SRP491411 / GSE256491 and SRP356459 / GSE256490¶

paper: PMID: 38987604 - Single-cell atlas of the human brain vasculature across development, adulthood and disease, 2024

date, curator: 2024-09-30, Sara Carsanaro

resources

  • GEO GSE256493 superseries
    • RDS barcode files with cell type information
  • supplementary files 1 & 2
    • age, infoOrgan, sex

notes

  • SRP491411 is connected to SRP356459 - the barcode files are from the same RDS object, same paper, etc.
  • all the prep work for both experiments was done with SRP356459, this notebook is for annotation of SRP491411 only
  • not clear if 10X V2 or V3 - GEO says 10X Genomics V2, supplemental methods says 10X Genomics V3, left as 10X V2 with comment to update if necessary
In [ ]:
experiment_id = "SRP491411"

path_to_create_exp_script = "/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py" 
path_to_barcodes_script = "/Users/scarsana/Desktop/git/scRNA-Seq/scripts/create_scRNASeq_barcode_v2.py"
experiment_type = "scRNA"

path_to_output_main = "/Users/scarsana/Desktop/git/expression-annotations/Notebooks/scRNA/" 
path_to_output = "{}{}/".format(path_to_output_main, experiment_id)
library_path_from_script = "{}scRNASeqLibrary_{}.tsv".format(path_to_output, experiment_id)
experiment_path_from_script = "{}scRNASeqExperiment_{}.tsv".format(path_to_output, experiment_id)
barcode_path = "{}scRNASeq_barcode_{}.tsv".format(path_to_output, experiment_id)
barcode_to_add_path = "{}complete_scRNASeq_barcode_{}.tsv".format(path_to_output, experiment_id)
library_to_add_path = "{}complete_scRNASeqLibrary_{}.tsv".format(path_to_output, experiment_id)
experiment_to_add_path = "{}complete_RNASeqExperiment_{}.tsv".format(path_to_output, experiment_id)
script_file = "{}.ipynb".format(experiment_id)
commit_message_exp = '"adding annotated scRNA experiment {}"'.format(experiment_id)
commit_message_py = '"adding annotation files for {} to notebook folder"'.format(experiment_id)



## to add to git
path_to_git_annotations = "/Users/scarsana/Desktop/git/expression-annotations/scRNA_Seq/"
git_library_path = "{}scRNASeqLibrary_merged.tsv".format(path_to_git_annotations)
git_experiment_path = "{}scRNASeqExperiment.tsv".format(path_to_git_annotations)
git_barcode_path = "{}scRNASeq_barcode_{}.tsv".format(path_to_git_annotations, experiment_id)

## columns
library_cols = ['#libraryId', 'experimentId', 'platform', 'SRSId', 'anatId', 'anatName', 'cellTypeId', 'cellTypeName', 'stageId', 'stageName', 'url_GSM', 'infoOrgan', 'infoCellType_abInitio', 'infoCellType_inferred', 'clusterId', 'clusterName', 'infoStage', 'anatAnnotationStatus', 'cellTypeAnnotationStatus', 'stageAnnotationStatus', 'sex', 'strain', 'genotype', 'speciesId', 'RNAseqTags', 'protocol', 'protocolType', 'lib_name', 'sampleName', 'comment', 'condition', 'annotatorId', 'lastModificationDate']
barcode_cols = ['barcode', 'cluster', 'library', 'experiment', 'tissue', 'cell_type', 'anatId_a_posteriori', 'anatName_a_posteriori', 'anat_a_posteriori_annotationStatus', 'cellTypeId', 'cellTypeName', 'cellTypeAnnotationStatus', 'name_Library', 'comments']

## annotation sheet paths (maybe make these into their own folder)
annotation_files_path = "{}annotation_files/".format(path_to_output)
import os
if not os.path.exists(annotation_files_path):
    os.makedirs(annotation_files_path)

info_anat_path = "{}info_anat.tsv".format(annotation_files_path)
info_anat_complete_path = "{}info_anat_complete.tsv".format(annotation_files_path)
info_stage_path = "{}info_dev_stage.tsv".format(annotation_files_path)
info_stage_complete_path = "{}info_dev_stage_complete.tsv".format(annotation_files_path)
info_celltype_path = "{}info_celltype.tsv".format(annotation_files_path)
info_celltype_complete_path = "{}info_celltype_complete.tsv".format(annotation_files_path)

## barcode file & matching library names - 10X only
path_to_barcode_file = "{}barcode_{}.tsv".format(path_to_output, experiment_id)
lib_names_path = "{}matching_lib_names_{}.tsv".format(path_to_output, experiment_id)

annotation summary¶

run these when annotation is complete

In [ ]:
# cell type annotations
display_df(cell_df_complete)
  cell_type notes_cell cellTypeId_ cellTypeName_ cellTypeAnnotationStatus_ cell_type_new comment_cell
0 Angiogenic capillary Angiogenesis is the growth of blood vessels from the existing vasculature CL:0002144 capillary endothelial cell missing child term Angiogenic capillary endothelial cell
1 Arteriole CL:1000412 endothelial cell of arteriole perfect match Arteriole endothelial cell
2 Artery CL:1000413 endothelial cell of artery perfect match Artery endothelial cell
3 Astrocytes CL:0000127 astrocyte perfect match Astrocytes
4 Capillary CL:0002144 capillary endothelial cell perfect match Capillary endothelial cell
5 EndoMT Endothelial to mesenchymal transition (EndMT) is a process whereby an endothelial cell undergoes a series of molecular events that lead to a change in phenotype toward a mesenchymal cell - there isn't enough literature for me to request a new term for EndMT CL:0000000 cell other EndoMT: endothelial-to-mesenchymal transitional cells
6 Endothelial cells CL:0000115 endothelial cell perfect match Endothelial cells
7 Fibroblasts CL:0000057 fibroblast perfect match Fibroblasts
8 Large artery CL:1000413 endothelial cell of artery missing child term Large artery endothelial cell
9 Large vein CL:0002543 vein endothelial cell missing child term Large vein endothelial cell
10 Microglia and Macrophages microglial cell is child of macrophage, annotating as macrophage CL:0000235 macrophage other Microglia and Macrophages
11 Mitochondrial weird that they kept these, keeping as just cell CL:0000000 cell other Mitochondrial
12 Neuron progenitor CL:0011020 neural progenitor cell other Neuron progenitor
13 Neurons CL:0000540 neuron perfect match Neurons
14 Oligodendrocytes CL:0000128 oligodendrocyte perfect match Oligodendrocytes
15 Pericytes CL:0000669 pericyte perfect match Pericytes
16 Proliferating cell this cluster comes from the EC specific cluster, so this is a proliferating EC not just a proliferating cell CL:0000115 endothelial cell missing child term Proliferating endothelial cell
17 Smooth muscle cells CL:0000192 smooth muscle cell perfect match Smooth muscle cells
18 Stem cells CL:0000034 stem cell perfect match Stem cells
19 Stem-to-EC A mesenchymal stem cell capable of developing into blood vessel endothelium - seems the closest term to stem to EC CL:0000566 angioblastic mesenchymal cell other Stem-to-endothelial cell transdifferentiating
20 T-cells CL:0000084 T cell perfect match T-cells
21 Vein CL:0002543 vein endothelial cell perfect match Vein endothelial cell
22 Venule CL:1000414 endothelial cell of venule perfect match Venule endothelial cell
In [ ]:
# organ annotations
display_df(organ_df_complete)
  infoOrgan notes_anat anatId_ anatName_ anatAnnotationStatus_ infoOrgan_new comment_anat
0 brain - CNS they describe as brain and other times CNS, going with brain because i think here they are using CNS as general, not to suggest they are including the spinal cord UBERON:0000955 brain perfect match
1 right temporal lobe UBERON:0002809 right temporal lobe perfect match
2 right temporal lobe - grey matter synonym of temporal cortex is gray matter of temporal lobe UBERON:0016538 temporal cortex missing child term
3 right temporal lobe - white matter UBERON:0016534 white matter of temporal lobe missing child term
In [ ]:
# stage annotations
display_df(stage_df_complete)
  infoStage notes_stage stageId_ stageName_ stageAnnotationStatus_ infoStage_new comment_stage
0 12.4 gestational weeks 12.4 gestational weeks - 10.4 wpf, 72.8 dpf HsapDv:0000048 11th week post-fertilization stage missing child term
1 24 years HsapDv:0000118 24-year-old stage perfect match
2 25 years HsapDv:0000119 25-year-old stage perfect match
3 39 years HsapDv:0000133 39-year-old stage perfect match
4 9.1 gestational weeks 9.1 gestational weeks - 7.1 wpf, 49.7 dpf HsapDv:0000026 Carnegie stage 19 missing child term
In [ ]:
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
import pandas as pd
import numpy as np
from IPython.display import display, HTML
import csv

# displays df with the scrollbar next to the DataFrame
def display_df(df):
    pd.set_option("display.max_rows", None)
    pd.set_option("display.max_columns", None)
    display(HTML("<div style='height: 300px; overflow: auto; width: fit-content'>" +
        df.style.to_html(index=False) + "</div>"))

# function that compares two columns in a dataframe and tells you which ones are not equal (case insensitive)
def compare_columns(df, col1, col2, return_col):
    compare_return = df[col1].str.lower() != df[col2].str.lower()  
    df.loc[compare_return, return_col] 
    if not any(compare_return):
        print("The two columns are equal (case insensitive)")
    else:
        print("The following rows are not equal: ")
        print(df.loc[compare_return, return_col])

# fixes formatting of file to match libreoffice settings/historic file format
def update_format(path):
    with open(path, 'r') as file:
        filedata = file.read()
    # Replace the target string
    filedata = filedata.replace("\t\"\"", "\t")
    # Write the file out again
    with open(path, 'w') as file:
        file.write(filedata)

# checks for duplicate values in a specific column and prints those values + the corresponding library id
def dup_check(df, column):
    duplicateCheck = df.duplicated(subset=[column], keep=False)
    if duplicateCheck.unique() == False:
        print("no duplicate values in " + column)
    elif duplicateCheck.unique() == True and column != '#libraryId':
        print(df[duplicateCheck].loc[:,['#libraryId', column]])
    elif duplicateCheck.unique() == True and column == '#libraryId':
        print(df[duplicateCheck].loc[:,['#libraryId']])

# prints all unique values in a specific column
def unique_sorted(df, column):
    unique = df[column].unique()
    unique.sort()
    print(unique)

10X - barcodes and annotations¶

before annotating a 10X experiment it is important to ensure that the barcodes and cell type annotations are available. places to check include GEO, supplemental materials of the paper, email the authors, github for project

below is code for h5ad, h5, and csv files. rds files should be accessed in R with readRDS

script¶

In [ ]:
! python3 $path_to_create_exp_script $experiment_id $path_to_output $experiment_type
/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py:97: SyntaxWarning: invalid escape sequence '\('
  all_protoc = [w.replace('(', '\(') for w in all_protoc]
/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py:98: SyntaxWarning: invalid escape sequence '\)'
  all_protoc = [w.replace(')', '\)') for w in all_protoc] 
Be patient, it may take a few minutes.
0it [00:00, ?it/s]
0 samples dont have attributes, try to find them somewhere else
0it [00:00, ?it/s]
0 samples dont have attributes

library file prep¶

manual updates to library files¶

  • used supplementary table 1 & 2 to verify/update age, sex, infoOrgan
  • used library sheet i made to update lib_name in file to match lib_name from barcode file
  • removed 5 libraries (condition = diseased)
  • healthy/control libraries: 'TL_20-02-2020_greymatter_sorted_3pr_v3', 'TL_20-02-2020_whitematter_sorted_3pr_v3', 'TL_20-02-2020_greymatter_unsorted_3pr_v3', 'TL_20-02-2020_whitematter_unsorted_3pr_v3', 'TL7', '9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1', 'TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3', 'TL_24-02-2020_whitematter_sorted_3pr_v3', 'TL_24-02-2020_greymatter_unsorted_3pr_v3', 'TL_24-02-2020_whitematter_unsorted_3pr_v3', '12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1'
In [ ]:
lib_matching = pd.read_csv('/Users/scarsana/Desktop/annotate/SRP356459/library_matching_SRP491411_SRP356459.csv', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(lib_matching)
  experimentId #libraryId FINAL_barcode lib_name_SRA lib_GEO
0 SRP491411 SRX23721836 12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 FETAL_brain_6_all cells FETAL_brain_6_all cells
1 SRP491411 SRX23721835 TL_24-02-2020_whitematter_unsorted_3pr_v3 TL_patient10_all cells_2 TL_patient10_all cells_2
2 SRP491411 SRX23721834 TL_24-02-2020_greymatter_unsorted_3pr_v3 TL_patient10_all cells_1 TL_patient10_all cells_1
3 SRP491411 SRX23721833 TL_24-02-2020_whitematter_sorted_3pr_v3 TL_patient10_EC_2 TL_patient10_EC_2
4 SRP491411 SRX23721832 TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 TL_patient10_EC_1 TL_patient10_EC_1
5 SRP491411 SRX23721831 9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 FETAL_brain_8_all cells FETAL_brain_8_all cells
6 SRP491411 SRX23721826 TL7 TL_patient7_EC TL_patient7_EC
7 SRP491411 SRX23721825 TL_20-02-2020_whitematter_unsorted_3pr_v3 TL_patient9_all cells_2 TL_patient9_all cells_2
8 SRP491411 SRX23721824 TL_20-02-2020_greymatter_unsorted_3pr_v3 TL_patient9_all cells_1 TL_patient9_all cells_1
9 SRP491411 SRX23721823 TL_20-02-2020_whitematter_sorted_3pr_v3 TL_patient9_EC_2 TL_patient9_EC_2
10 SRP491411 SRX23721822 TL_20-02-2020_greymatter_sorted_3pr_v3 TL_patient9_EC_1 TL_patient9_EC_1
11 SRP356459 SRX13883104 15point5_Weeks_Fetal_Heart_Sorted_3pr_v3_1 15point5_Weeks_Fetal_Heart_Sorted_3pr_v3_1 FETAL_periphery_IND5.1_EC
12 SRP356459 SRX13883088 12point4_Weeks_Fetal_Arm_SORTED_3pr_v3_1 12point4_Weeks_Fetal_Arm_SORTED_3pr_v3_1 FETAL_periphery_IND6_EC
13 SRP356459 SRX13883081 15point5_Weeks_Fetal_Arm_Sorted_3pr_v3_1 15point5_Weeks_Fetal_Arm_Sorted_3pr_v3_1 FETAL_periphery_IND5_EC
14 SRP356459 SRX13883071 14-4_16-4_weeks_Fetal_CNS_Sorted_pooled_3pr_v3 14-4_16-4_weeks_Fetal_CNS_Sorted_pooled_3pr_v3 FETAL_brain_IND2_IND3_EC
15 SRP356459 SRX13883070 Fetal_CNS_20-10-2020_sorted_3pr_v3 Fetal_CNS_20-10-2020_sorted_3pr_v3 FETAL_brain_IND1_EC
16 SRP356459 SRX13883067 18wk_Fetal_Leg_Sorted_3pr_v3_1 18wk_Fetal_Leg_Sorted_3pr_v3_1 FETAL_periphery_IND4_EC
17 SRP356459 SRX13883064 TL_27-01-2020_EC_3pr_v3 TL_27-01-2020_EC TL_patient6_EC
18 SRP356459 SRX13883063 TL_10-10-2019_ECs TL_10-10-2019_ECs TL_patient5_EC
19 SRP356459 SRX13883062 TLE TLE_19_03_2019 TL_patient4_EC
20 SRP356459 SRX13883061 temporal_lobe_20190219 temporal_lobe_20190219 TL_patient3_EC
21 SRP356459 SRX13883058 15point5_Weeks_Fetal_CNS_Sorted_3pr_v3_1 15point5_Weeks_Fetal_CNS_Sorted_3pr_v3_1 FETAL_brain_IND5_EC
22 SRP356459 SRX13883057 18wk_Fetal_CNS_Sorted_3pr_v3_1 18wk_Fetal_CNS_Sorted_3pr_v3_1 FETAL_brain_IND4_EC
23 SRP356459 SRX13883048 15point5_Weeks_Fetal_Throat_Sorted_3pr_v3_1 15point5_Weeks_Fetal_Throat_Sorted_3pr_v3_1 FETAL_periphery_IND5.3_EC
24 SRP356459 SRX13883045 TLE_White-matter_Unsorted_3pr_v3 TLE_White-matter_Unsorted_3pr_v3 TL_patient10_all cells
25 SRP356459 SRX13883044 TLE_Grey-matter_Unsorted_3pr_v3 TLE_Grey-matter_Unsorted_3pr_v3 TL_patient9_all cells
26 SRP356459 SRX13883043 TLE_Grey-White-Interface_Unsorted_3pr_v3 TLE_Grey-White-Interface_Unsorted_3pr_v3 TL_patient8_all cells
27 SRP356459 SRX13883042 Combined_White_GreyPia_WhiteGreyPia_03-11-2020_Unsorted_3pr_v3 Combined_White_GreyPia_WhiteGreyPia_03-11-2020_Unsorted_3pr_v3 TL_patient7_all cells
28 SRP356459 SRX13883041 TL_27-01-2020_unsorted_3pr_v3 TL_27-01-2020_unsorted_3pr_v3 TL_patient6_all cells
29 SRP356459 SRX13883040 TL_10-10-2019_unsorted TL_10-10-2019_unsorted TL_patient5_all cells
30 SRP356459 SRX13883039 15point5_Weeks_Fetal_CNS_Unsorted_3pr_v3_1 15point5_Weeks_Fetal_CNS_Unsorted_3pr_v3_1 FETAL_brain_5_all cells
31 SRP356459 SRX13883038 18wk_Fetal_CNS_Unsorted_3pr_v3_1 18wk_Fetal_CNS_Unsorted_3pr_v3_1 FETAL_brain_4_all cells
32 SRP356459 SRX13883037 15point5_Weeks_Fetal_Kidney_Sorted_3pr_v3_1 15point5_Weeks_Fetal_Kidney_Sorted_3pr_v3_1 FETAL_periphery_IND5.2_EC
33 SRP356459 SRX13883036 16-4weeks_Fetal_CNS_Unsorted_3pr_v3 16-4weeks_Fetal_CNS_Unsorted_3pr_v3 FETAL_brain_3_all cells
34 SRP356459 SRX13883035 14-4weeks_Fetal_CNS_Unsorted_3pr_v3 14-4weeks_Fetal_CNS_Unsorted_3pr_v3 FETAL_brain_2_all cells
35 SRP356459 SRX13883034 Fetal_CNS_20-10-2020_unsorted_3pr_v3 Fetal_CNS_20-10-2020_unsorted_3pr_v3 FETAL_brain_1_all cells
36 SRP356459 SRX13883032 16-4weeks_Fetal_HeartandLung_Sorted_3pr_v3 16-4weeks_Fetal_HeartandLung_Sorted_3pr_v3 FETAL_periphery_IND3_EC
37 SRP356459 SRX13883031 4weeks_Fetal_Muscle_Sorted_3pr_v3 14-4weeks_Fetal_Muscle_Sorted_3pr_v3 FETAL_periphery_IND2_EC

library annnotations¶

In [ ]:
library = pd.read_csv(library_path_from_script, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
# limiting to final columns only b/c display is too big and information from extra columns has already been moved appropriately 
library = library[library_cols]
display_df(library)
  #libraryId experimentId platform SRSId anatId anatName cellTypeId cellTypeName stageId stageName url_GSM infoOrgan infoCellType_abInitio infoCellType_inferred clusterId clusterName infoStage anatAnnotationStatus cellTypeAnnotationStatus stageAnnotationStatus sex strain genotype speciesId RNAseqTags protocol protocolType lib_name sampleName comment condition annotatorId lastModificationDate
0 SRX23721836 SRP491411 Illumina NovaSeq 6000 SRS20549925 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101607 brain - CNS Endothelial, perivascular and other tissue derived cells 12.4 gestational weeks NA 9606 10X Genomics V2,10X Genomics 3'end 12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082466 30/09/2024
1 SRX23721835 SRP491411 Illumina NovaSeq 6000 SRS20551511 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101601 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 24 years M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_whitematter_unsorted_3pr_v3 SAMN40082472 30/09/2024
2 SRX23721834 SRP491411 Illumina NovaSeq 6000 SRS20552142 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101600 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 24 years M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_greymatter_unsorted_3pr_v3 SAMN40082473 30/09/2024
3 SRX23721833 SRP491411 Illumina NovaSeq 6000 SRS20552356 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101599 right temporal lobe - white matter Endothelial cells 24 years M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_whitematter_sorted_3pr_v3 SAMN40082474 30/09/2024
4 SRX23721832 SRP491411 Illumina NovaSeq 6000 SRS20549927 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101598 right temporal lobe - grey matter Endothelial cells 24 years M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 SAMN40082475 30/09/2024
5 SRX23721831 SRP491411 Illumina NovaSeq 6000 SRS20551510 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101606 brain - CNS Endothelial, perivascular and other tissue derived cells 9.1 gestational weeks NA 9606 10X Genomics V2,10X Genomics 3'end 9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082467 30/09/2024
6 SRX23721826 SRP491411 Illumina NovaSeq 6000 SRS20552352 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101597 right temporal lobe Endothelial cells 39 years F 9606 10X Genomics V2,10X Genomics 3'end TL7 SAMN40082476 30/09/2024
7 SRX23721825 SRP491411 Illumina NovaSeq 6000 SRS20551508 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101596 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 25 years M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_whitematter_unsorted_3pr_v3 SAMN40082477 30/09/2024
8 SRX23721824 SRP491411 Illumina NovaSeq 6000 SRS20552354 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101595 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 25 years M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_greymatter_unsorted_3pr_v3 SAMN40082478 30/09/2024
9 SRX23721823 SRP491411 Illumina NovaSeq 6000 SRS20552353 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101594 right temporal lobe - white matter Endothelial cells 25 years M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_whitematter_sorted_3pr_v3 SAMN40082479 30/09/2024
10 SRX23721822 SRP491411 Illumina NovaSeq 6000 SRS20552141 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101593 right temporal lobe - grey matter Endothelial cells 25 years M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_greymatter_sorted_3pr_v3 SAMN40082480 30/09/2024

anatomical entity¶

In [ ]:
infoOrgan = library['infoOrgan'].drop_duplicates().sort_values()
organ_df = pd.DataFrame(infoOrgan)
organ_df = organ_df.reindex(columns=[*organ_df.columns.tolist(), 'notes_anat', 'anatId_', 'anatName_', 'anatAnnotationStatus_', 'infoOrgan_new', 'comment_anat'], fill_value="")
organ_df.to_csv(info_anat_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
if not os.path.exists(info_anat_complete_path): 
    organ_df.to_csv(info_anat_complete_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)

# options for anatAnnotationStatus: perfect match, missing child term, other
In [ ]:
organ_df_complete = pd.read_csv(info_anat_complete_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(organ_df_complete)
  infoOrgan notes_anat anatId_ anatName_ anatAnnotationStatus_ infoOrgan_new comment_anat
0 brain - CNS they describe as brain and other times CNS, going with brain because i think here they are using CNS as general, not to suggest they are including the spinal cord UBERON:0000955 brain perfect match
1 right temporal lobe UBERON:0002809 right temporal lobe perfect match
2 right temporal lobe - grey matter synonym of temporal cortex is gray matter of temporal lobe UBERON:0016538 temporal cortex missing child term
3 right temporal lobe - white matter UBERON:0016534 white matter of temporal lobe missing child term
In [ ]:
library = library.merge(organ_df_complete, left_on='infoOrgan', right_on='infoOrgan')
In [ ]:
library['anatId'] = library['anatId_'].values
library['anatName'] = library['anatName_'].values
library['anatAnnotationStatus'] = library['anatAnnotationStatus_'].values
In [ ]:
## optional - update infoOrgan, add anat-specific comments 
#library['infoOrgan'] = library['infoOrgan_new'].values
#library['comment'] = library[['comment', 'comment_anat']].agg(' '.join, axis=1)
In [ ]:
# reformat, save progress
library = library[library_cols]
display_df(library)
library.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
  #libraryId experimentId platform SRSId anatId anatName cellTypeId cellTypeName stageId stageName url_GSM infoOrgan infoCellType_abInitio infoCellType_inferred clusterId clusterName infoStage anatAnnotationStatus cellTypeAnnotationStatus stageAnnotationStatus sex strain genotype speciesId RNAseqTags protocol protocolType lib_name sampleName comment condition annotatorId lastModificationDate
0 SRX23721836 SRP491411 Illumina NovaSeq 6000 SRS20549925 UBERON:0000955 brain https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101607 brain - CNS Endothelial, perivascular and other tissue derived cells 12.4 gestational weeks perfect match NA 9606 10X Genomics V2,10X Genomics 3'end 12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082466 30/09/2024
1 SRX23721835 SRP491411 Illumina NovaSeq 6000 SRS20551511 UBERON:0016534 white matter of temporal lobe https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101601 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 24 years missing child term M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_whitematter_unsorted_3pr_v3 SAMN40082472 30/09/2024
2 SRX23721834 SRP491411 Illumina NovaSeq 6000 SRS20552142 UBERON:0016538 temporal cortex https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101600 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 24 years missing child term M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_greymatter_unsorted_3pr_v3 SAMN40082473 30/09/2024
3 SRX23721833 SRP491411 Illumina NovaSeq 6000 SRS20552356 UBERON:0016534 white matter of temporal lobe https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101599 right temporal lobe - white matter Endothelial cells 24 years missing child term M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_whitematter_sorted_3pr_v3 SAMN40082474 30/09/2024
4 SRX23721832 SRP491411 Illumina NovaSeq 6000 SRS20549927 UBERON:0016538 temporal cortex https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101598 right temporal lobe - grey matter Endothelial cells 24 years missing child term M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 SAMN40082475 30/09/2024
5 SRX23721831 SRP491411 Illumina NovaSeq 6000 SRS20551510 UBERON:0000955 brain https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101606 brain - CNS Endothelial, perivascular and other tissue derived cells 9.1 gestational weeks perfect match NA 9606 10X Genomics V2,10X Genomics 3'end 9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082467 30/09/2024
6 SRX23721826 SRP491411 Illumina NovaSeq 6000 SRS20552352 UBERON:0002809 right temporal lobe https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101597 right temporal lobe Endothelial cells 39 years perfect match F 9606 10X Genomics V2,10X Genomics 3'end TL7 SAMN40082476 30/09/2024
7 SRX23721825 SRP491411 Illumina NovaSeq 6000 SRS20551508 UBERON:0016534 white matter of temporal lobe https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101596 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 25 years missing child term M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_whitematter_unsorted_3pr_v3 SAMN40082477 30/09/2024
8 SRX23721824 SRP491411 Illumina NovaSeq 6000 SRS20552354 UBERON:0016538 temporal cortex https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101595 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 25 years missing child term M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_greymatter_unsorted_3pr_v3 SAMN40082478 30/09/2024
9 SRX23721823 SRP491411 Illumina NovaSeq 6000 SRS20552353 UBERON:0016534 white matter of temporal lobe https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101594 right temporal lobe - white matter Endothelial cells 25 years missing child term M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_whitematter_sorted_3pr_v3 SAMN40082479 30/09/2024
10 SRX23721822 SRP491411 Illumina NovaSeq 6000 SRS20552141 UBERON:0016538 temporal cortex https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101593 right temporal lobe - grey matter Endothelial cells 25 years missing child term M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_greymatter_sorted_3pr_v3 SAMN40082480 30/09/2024

stage¶

  • species specific developmental ontologies
In [ ]:
infoStage = library['infoStage'].drop_duplicates().sort_values()
stage_df = pd.DataFrame(infoStage)
stage_df = stage_df.reindex(columns=[*stage_df.columns.tolist(), 'notes_stage', 'stageId_', 'stageName_', 'stageAnnotationStatus_', 'infoStage_new','comment_stage'], fill_value="")
stage_df.to_csv(info_stage_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
if not os.path.exists(info_stage_complete_path): 
    stage_df.to_csv(info_stage_complete_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)

# options for stageAnnotationStatus: perfect match, missing child term, other
In [ ]:
stage_df_complete = pd.read_csv(info_stage_complete_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(stage_df_complete)
  infoStage notes_stage stageId_ stageName_ stageAnnotationStatus_ infoStage_new comment_stage
0 12.4 gestational weeks 12.4 gestational weeks - 10.4 wpf, 72.8 dpf HsapDv:0000048 11th week post-fertilization stage missing child term
1 24 years HsapDv:0000118 24-year-old stage perfect match
2 25 years HsapDv:0000119 25-year-old stage perfect match
3 39 years HsapDv:0000133 39-year-old stage perfect match
4 9.1 gestational weeks 9.1 gestational weeks - 7.1 wpf, 49.7 dpf HsapDv:0000026 Carnegie stage 19 missing child term
In [ ]:
library = library.merge(stage_df_complete, left_on='infoStage', right_on='infoStage')
In [ ]:
library['stageId'] = library['stageId_'].values
library['stageName'] = library['stageName_'].values
library['stageAnnotationStatus'] = library['stageAnnotationStatus_'].values
In [ ]:
## optional - update infoOrgan, add anat-specific comments 
#library['infoStage'] = library['infoStage_new'].values
#library['comment'] = library[['comment', 'comment_stage']].agg(' '.join, axis=1)
In [ ]:
# reformat, save progress
library = library[library_cols]
display_df(library)
library.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
  #libraryId experimentId platform SRSId anatId anatName cellTypeId cellTypeName stageId stageName url_GSM infoOrgan infoCellType_abInitio infoCellType_inferred clusterId clusterName infoStage anatAnnotationStatus cellTypeAnnotationStatus stageAnnotationStatus sex strain genotype speciesId RNAseqTags protocol protocolType lib_name sampleName comment condition annotatorId lastModificationDate
0 SRX23721836 SRP491411 Illumina NovaSeq 6000 SRS20549925 UBERON:0000955 brain HsapDv:0000048 11th week post-fertilization stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101607 brain - CNS Endothelial, perivascular and other tissue derived cells 12.4 gestational weeks perfect match missing child term NA 9606 10X Genomics V2,10X Genomics 3'end 12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082466 30/09/2024
1 SRX23721835 SRP491411 Illumina NovaSeq 6000 SRS20551511 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101601 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 24 years missing child term perfect match M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_whitematter_unsorted_3pr_v3 SAMN40082472 30/09/2024
2 SRX23721834 SRP491411 Illumina NovaSeq 6000 SRS20552142 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101600 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 24 years missing child term perfect match M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_greymatter_unsorted_3pr_v3 SAMN40082473 30/09/2024
3 SRX23721833 SRP491411 Illumina NovaSeq 6000 SRS20552356 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101599 right temporal lobe - white matter Endothelial cells 24 years missing child term perfect match M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_whitematter_sorted_3pr_v3 SAMN40082474 30/09/2024
4 SRX23721832 SRP491411 Illumina NovaSeq 6000 SRS20549927 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101598 right temporal lobe - grey matter Endothelial cells 24 years missing child term perfect match M 9606 10X Genomics V2,10X Genomics 3'end TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 SAMN40082475 30/09/2024
5 SRX23721831 SRP491411 Illumina NovaSeq 6000 SRS20551510 UBERON:0000955 brain HsapDv:0000026 Carnegie stage 19 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101606 brain - CNS Endothelial, perivascular and other tissue derived cells 9.1 gestational weeks perfect match missing child term NA 9606 10X Genomics V2,10X Genomics 3'end 9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082467 30/09/2024
6 SRX23721826 SRP491411 Illumina NovaSeq 6000 SRS20552352 UBERON:0002809 right temporal lobe HsapDv:0000133 39-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101597 right temporal lobe Endothelial cells 39 years perfect match perfect match F 9606 10X Genomics V2,10X Genomics 3'end TL7 SAMN40082476 30/09/2024
7 SRX23721825 SRP491411 Illumina NovaSeq 6000 SRS20551508 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101596 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 25 years missing child term perfect match M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_whitematter_unsorted_3pr_v3 SAMN40082477 30/09/2024
8 SRX23721824 SRP491411 Illumina NovaSeq 6000 SRS20552354 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101595 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 25 years missing child term perfect match M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_greymatter_unsorted_3pr_v3 SAMN40082478 30/09/2024
9 SRX23721823 SRP491411 Illumina NovaSeq 6000 SRS20552353 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101594 right temporal lobe - white matter Endothelial cells 25 years missing child term perfect match M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_whitematter_sorted_3pr_v3 SAMN40082479 30/09/2024
10 SRX23721822 SRP491411 Illumina NovaSeq 6000 SRS20552141 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101593 right temporal lobe - grey matter Endothelial cells 25 years missing child term perfect match M 9606 10X Genomics V2,10X Genomics 3'end TL_20-02-2020_greymatter_sorted_3pr_v3 SAMN40082480 30/09/2024

sex, strain, genotype, speciesId¶

  • uniprot strain list
  • uniprot species list
  • bgee strain mapping
  • sex options: M (male), F (female), NA (not available, unknown), mixed (both male and female)
In [ ]:
#library.loc[library["sex"] == "male", "sex"] = "M"
#library.loc[library["sex"] == "female", "sex"] = "F"

#library.loc[:,'strain'] = ''

#library.loc[:,'genotype'] = ''

#library.loc[:,'speciesId'] = ''

# view
display_df(library)

protocol & RNAseqTags¶

In [ ]:
# making these variables because we use them again in the experiment file
# usually 10X Genomics V1/V2/V3/V3.1, Smart-seq, Smart-seq2
my_protocol = '10X Genomics V2'
# Full-length or 3'end or 5'end
my_protocolType = "3'end"

library.loc[:,'protocol'] = my_protocol
library.loc[:,'protocolType'] = my_protocolType
# scRNA-seq, Sn-scRNA-seq
library.loc[:,'RNAseqTags'] = 'scRNA-seq'

# view
display_df(library)
  #libraryId experimentId platform SRSId anatId anatName cellTypeId cellTypeName stageId stageName url_GSM infoOrgan infoCellType_abInitio infoCellType_inferred clusterId clusterName infoStage anatAnnotationStatus cellTypeAnnotationStatus stageAnnotationStatus sex strain genotype speciesId RNAseqTags protocol protocolType lib_name sampleName comment condition annotatorId lastModificationDate
0 SRX23721836 SRP491411 Illumina NovaSeq 6000 SRS20549925 UBERON:0000955 brain HsapDv:0000048 11th week post-fertilization stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101607 brain - CNS Endothelial, perivascular and other tissue derived cells 12.4 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082466 30/09/2024
1 SRX23721835 SRP491411 Illumina NovaSeq 6000 SRS20551511 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101601 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_whitematter_unsorted_3pr_v3 SAMN40082472 30/09/2024
2 SRX23721834 SRP491411 Illumina NovaSeq 6000 SRS20552142 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101600 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_greymatter_unsorted_3pr_v3 SAMN40082473 30/09/2024
3 SRX23721833 SRP491411 Illumina NovaSeq 6000 SRS20552356 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101599 right temporal lobe - white matter Endothelial cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_whitematter_sorted_3pr_v3 SAMN40082474 30/09/2024
4 SRX23721832 SRP491411 Illumina NovaSeq 6000 SRS20549927 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101598 right temporal lobe - grey matter Endothelial cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 SAMN40082475 30/09/2024
5 SRX23721831 SRP491411 Illumina NovaSeq 6000 SRS20551510 UBERON:0000955 brain HsapDv:0000026 Carnegie stage 19 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101606 brain - CNS Endothelial, perivascular and other tissue derived cells 9.1 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082467 30/09/2024
6 SRX23721826 SRP491411 Illumina NovaSeq 6000 SRS20552352 UBERON:0002809 right temporal lobe HsapDv:0000133 39-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101597 right temporal lobe Endothelial cells 39 years perfect match perfect match F 9606 scRNA-seq 10X Genomics V2 3'end TL7 SAMN40082476 30/09/2024
7 SRX23721825 SRP491411 Illumina NovaSeq 6000 SRS20551508 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101596 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_whitematter_unsorted_3pr_v3 SAMN40082477 30/09/2024
8 SRX23721824 SRP491411 Illumina NovaSeq 6000 SRS20552354 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101595 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_greymatter_unsorted_3pr_v3 SAMN40082478 30/09/2024
9 SRX23721823 SRP491411 Illumina NovaSeq 6000 SRS20552353 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101594 right temporal lobe - white matter Endothelial cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_whitematter_sorted_3pr_v3 SAMN40082479 30/09/2024
10 SRX23721822 SRP491411 Illumina NovaSeq 6000 SRS20552141 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101593 right temporal lobe - grey matter Endothelial cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_greymatter_sorted_3pr_v3 SAMN40082480 30/09/2024

condition¶

In [ ]:
# ex. control, diet, light, reproductive capacity, time post mortem, time post feeding, 
# exercise details, menstruation, personality, litter size 
#library.loc[library["condition"] == "old", "condition"] = "new"

# view
display_df(library)

annotator id, last modification date¶

In [ ]:
library.loc[:,'annotatorId'] = 'SAC'
library.loc[:,'lastModificationDate'] = '2024-09-30'

# view
display_df(library)
  #libraryId experimentId platform SRSId anatId anatName cellTypeId cellTypeName stageId stageName url_GSM infoOrgan infoCellType_abInitio infoCellType_inferred clusterId clusterName infoStage anatAnnotationStatus cellTypeAnnotationStatus stageAnnotationStatus sex strain genotype speciesId RNAseqTags protocol protocolType lib_name sampleName comment condition annotatorId lastModificationDate
0 SRX23721836 SRP491411 Illumina NovaSeq 6000 SRS20549925 UBERON:0000955 brain HsapDv:0000048 11th week post-fertilization stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101607 brain - CNS Endothelial, perivascular and other tissue derived cells 12.4 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082466 SAC 2024-09-30
1 SRX23721835 SRP491411 Illumina NovaSeq 6000 SRS20551511 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101601 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_whitematter_unsorted_3pr_v3 SAMN40082472 SAC 2024-09-30
2 SRX23721834 SRP491411 Illumina NovaSeq 6000 SRS20552142 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101600 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_greymatter_unsorted_3pr_v3 SAMN40082473 SAC 2024-09-30
3 SRX23721833 SRP491411 Illumina NovaSeq 6000 SRS20552356 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101599 right temporal lobe - white matter Endothelial cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_whitematter_sorted_3pr_v3 SAMN40082474 SAC 2024-09-30
4 SRX23721832 SRP491411 Illumina NovaSeq 6000 SRS20549927 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101598 right temporal lobe - grey matter Endothelial cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 SAMN40082475 SAC 2024-09-30
5 SRX23721831 SRP491411 Illumina NovaSeq 6000 SRS20551510 UBERON:0000955 brain HsapDv:0000026 Carnegie stage 19 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101606 brain - CNS Endothelial, perivascular and other tissue derived cells 9.1 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082467 SAC 2024-09-30
6 SRX23721826 SRP491411 Illumina NovaSeq 6000 SRS20552352 UBERON:0002809 right temporal lobe HsapDv:0000133 39-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101597 right temporal lobe Endothelial cells 39 years perfect match perfect match F 9606 scRNA-seq 10X Genomics V2 3'end TL7 SAMN40082476 SAC 2024-09-30
7 SRX23721825 SRP491411 Illumina NovaSeq 6000 SRS20551508 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101596 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_whitematter_unsorted_3pr_v3 SAMN40082477 SAC 2024-09-30
8 SRX23721824 SRP491411 Illumina NovaSeq 6000 SRS20552354 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101595 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_greymatter_unsorted_3pr_v3 SAMN40082478 SAC 2024-09-30
9 SRX23721823 SRP491411 Illumina NovaSeq 6000 SRS20552353 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101594 right temporal lobe - white matter Endothelial cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_whitematter_sorted_3pr_v3 SAMN40082479 SAC 2024-09-30
10 SRX23721822 SRP491411 Illumina NovaSeq 6000 SRS20552141 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101593 right temporal lobe - grey matter Endothelial cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_greymatter_sorted_3pr_v3 SAMN40082480 SAC 2024-09-30

comments¶

In [ ]:
#library.loc[:,'comment'] = ''

save complete file with correct columns¶

In [ ]:
library_file_complete = library[library_cols]

library_file_complete.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)

# view
display_df(library_file_complete)
  #libraryId experimentId platform SRSId anatId anatName cellTypeId cellTypeName stageId stageName url_GSM infoOrgan infoCellType_abInitio infoCellType_inferred clusterId clusterName infoStage anatAnnotationStatus cellTypeAnnotationStatus stageAnnotationStatus sex strain genotype speciesId RNAseqTags protocol protocolType lib_name sampleName comment condition annotatorId lastModificationDate
0 SRX23721836 SRP491411 Illumina NovaSeq 6000 SRS20549925 UBERON:0000955 brain HsapDv:0000048 11th week post-fertilization stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101607 brain - CNS Endothelial, perivascular and other tissue derived cells 12.4 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082466 SAC 2024-09-30
1 SRX23721835 SRP491411 Illumina NovaSeq 6000 SRS20551511 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101601 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_whitematter_unsorted_3pr_v3 SAMN40082472 SAC 2024-09-30
2 SRX23721834 SRP491411 Illumina NovaSeq 6000 SRS20552142 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101600 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_greymatter_unsorted_3pr_v3 SAMN40082473 SAC 2024-09-30
3 SRX23721833 SRP491411 Illumina NovaSeq 6000 SRS20552356 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101599 right temporal lobe - white matter Endothelial cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_whitematter_sorted_3pr_v3 SAMN40082474 SAC 2024-09-30
4 SRX23721832 SRP491411 Illumina NovaSeq 6000 SRS20549927 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101598 right temporal lobe - grey matter Endothelial cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 SAMN40082475 SAC 2024-09-30
5 SRX23721831 SRP491411 Illumina NovaSeq 6000 SRS20551510 UBERON:0000955 brain HsapDv:0000026 Carnegie stage 19 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101606 brain - CNS Endothelial, perivascular and other tissue derived cells 9.1 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082467 SAC 2024-09-30
6 SRX23721826 SRP491411 Illumina NovaSeq 6000 SRS20552352 UBERON:0002809 right temporal lobe HsapDv:0000133 39-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101597 right temporal lobe Endothelial cells 39 years perfect match perfect match F 9606 scRNA-seq 10X Genomics V2 3'end TL7 SAMN40082476 SAC 2024-09-30
7 SRX23721825 SRP491411 Illumina NovaSeq 6000 SRS20551508 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101596 right temporal lobe - white matter Endothelial, perivascular and other tissue derived cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_whitematter_unsorted_3pr_v3 SAMN40082477 SAC 2024-09-30
8 SRX23721824 SRP491411 Illumina NovaSeq 6000 SRS20552354 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101595 right temporal lobe - grey matter Endothelial, perivascular and other tissue derived cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_greymatter_unsorted_3pr_v3 SAMN40082478 SAC 2024-09-30
9 SRX23721823 SRP491411 Illumina NovaSeq 6000 SRS20552353 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101594 right temporal lobe - white matter Endothelial cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_whitematter_sorted_3pr_v3 SAMN40082479 SAC 2024-09-30
10 SRX23721822 SRP491411 Illumina NovaSeq 6000 SRS20552141 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8101593 right temporal lobe - grey matter Endothelial cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_greymatter_sorted_3pr_v3 SAMN40082480 SAC 2024-09-30

script - barcode (10X only)¶

In [ ]:
barcode_column = "barcode"
library_column = "library_name"
cell_type_column = "clusters"
In [ ]:
! python3 $path_to_barcodes_script $path_to_output --scRNASeqLibrary $library_to_add_path --barcode_file $path_to_barcode_file --barcode_col $barcode_column --libName_col $library_column --cellType_col $cell_type_column --ignore_check --no_additional_file
There are 11 unique libraries in scRNASeqLibrary.tsv table
There are 11 unique libraries in the barcode table provided
Be extra careful if not same number of libraries in both tables, always manually check the matching names in 'matching_lib_names.tsv' table output
100%|█████████████████████████████████████████| 11/11 [00:00<00:00, 3478.91it/s]
                                    name_Library                               new_lib_name
44836  TL_20-02-2020_whitematter_unsorted_3pr_v3  TL_20-02-2020_whitematter_unsorted_3pr_v3
38701  TL_20-02-2020_whitematter_unsorted_3pr_v3  TL_20-02-2020_whitematter_unsorted_3pr_v3
42310  TL_20-02-2020_whitematter_unsorted_3pr_v3  TL_20-02-2020_whitematter_unsorted_3pr_v3
29717   TL_20-02-2020_greymatter_unsorted_3pr_v3   TL_20-02-2020_greymatter_unsorted_3pr_v3
3342      TL_20-02-2020_greymatter_sorted_3pr_v3     TL_20-02-2020_greymatter_sorted_3pr_v3
33771   TL_20-02-2020_greymatter_unsorted_3pr_v3   TL_20-02-2020_greymatter_unsorted_3pr_v3
41290  TL_20-02-2020_whitematter_unsorted_3pr_v3  TL_20-02-2020_whitematter_unsorted_3pr_v3
37696  TL_20-02-2020_whitematter_unsorted_3pr_v3  TL_20-02-2020_whitematter_unsorted_3pr_v3
44031  TL_20-02-2020_whitematter_unsorted_3pr_v3  TL_20-02-2020_whitematter_unsorted_3pr_v3
61291  TL_24-02-2020_whitematter_unsorted_3pr_v3  TL_24-02-2020_whitematter_unsorted_3pr_v3
57593  TL_24-02-2020_whitematter_unsorted_3pr_v3  TL_24-02-2020_whitematter_unsorted_3pr_v3
53727   TL_24-02-2020_greymatter_unsorted_3pr_v3   TL_24-02-2020_greymatter_unsorted_3pr_v3
38640  TL_20-02-2020_whitematter_unsorted_3pr_v3  TL_20-02-2020_whitematter_unsorted_3pr_v3
53056   TL_24-02-2020_greymatter_unsorted_3pr_v3   TL_24-02-2020_greymatter_unsorted_3pr_v3
48666   TL_24-02-2020_greymatter_unsorted_3pr_v3   TL_24-02-2020_greymatter_unsorted_3pr_v3
37626  TL_20-02-2020_whitematter_unsorted_3pr_v3  TL_20-02-2020_whitematter_unsorted_3pr_v3
54377   TL_24-02-2020_greymatter_unsorted_3pr_v3   TL_24-02-2020_greymatter_unsorted_3pr_v3
53537   TL_24-02-2020_greymatter_unsorted_3pr_v3   TL_24-02-2020_greymatter_unsorted_3pr_v3
29505   TL_20-02-2020_greymatter_unsorted_3pr_v3   TL_20-02-2020_greymatter_unsorted_3pr_v3
6076      TL_20-02-2020_greymatter_sorted_3pr_v3     TL_20-02-2020_greymatter_sorted_3pr_v3
0 libraries dont have any barcodes !!
the following libraries don't have any barcodes: set()

check library names match¶

In [ ]:
lib_names = pd.read_csv(lib_names_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(lib_names)
  from_barcode_table from_lib_table
0 12point4_Weeks_Fetal_CNS__3pr_v3_1 12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1
1 9point1_Weeks_Fetal_CNS__3pr_v3_1 9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1
2 TL7 TL7
3 TL_20-02-2020_greymatter_sorted_3pr_v3 TL_20-02-2020_greymatter_sorted_3pr_v3
4 TL_20-02-2020_greymatter_unsorted_3pr_v3 TL_20-02-2020_greymatter_unsorted_3pr_v3
5 TL_20-02-2020_whitematter_sorted_3pr_v3 TL_20-02-2020_whitematter_sorted_3pr_v3
6 TL_20-02-2020_whitematter_unsorted_3pr_v3 TL_20-02-2020_whitematter_unsorted_3pr_v3
7 TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3
8 TL_24-02-2020_greymatter_unsorted_3pr_v3 TL_24-02-2020_greymatter_unsorted_3pr_v3
9 TL_24-02-2020_whitematter_sorted_3pr_v3 TL_24-02-2020_whitematter_sorted_3pr_v3
10 TL_24-02-2020_whitematter_unsorted_3pr_v3 TL_24-02-2020_whitematter_unsorted_3pr_v3

cell type annotation - 10X version¶

In [ ]:
barcode_file = pd.read_csv(barcode_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
In [ ]:
cell_type = barcode_file['cell_type'].drop_duplicates().sort_values()
cell_df = pd.DataFrame(cell_type)
cell_df = cell_df.reindex(columns=[*cell_df.columns.tolist(), 'notes_cell', 'cellTypeId_', 'cellTypeName_', 'cellTypeAnnotationStatus_', 'cell_type_new','comment_cell'], fill_value="")
cell_df.to_csv(info_celltype_path, sep="\t", index=False)
if not os.path.exists(info_celltype_complete_path): 
    cell_df.to_csv(info_celltype_complete_path, sep="\t", index=False)

# options for cellTypeAnnotationStatus: perfect match, missing child term, other
In [ ]:
cell_df_complete = pd.read_csv(info_celltype_complete_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(cell_df_complete)
  cell_type notes_cell cellTypeId_ cellTypeName_ cellTypeAnnotationStatus_ cell_type_new comment_cell
0 Angiogenic capillary Angiogenesis is the growth of blood vessels from the existing vasculature CL:0002144 capillary endothelial cell missing child term Angiogenic capillary endothelial cell
1 Arteriole CL:1000412 endothelial cell of arteriole perfect match Arteriole endothelial cell
2 Artery CL:1000413 endothelial cell of artery perfect match Artery endothelial cell
3 Astrocytes CL:0000127 astrocyte perfect match Astrocytes
4 Capillary CL:0002144 capillary endothelial cell perfect match Capillary endothelial cell
5 EndoMT Endothelial to mesenchymal transition (EndMT) is a process whereby an endothelial cell undergoes a series of molecular events that lead to a change in phenotype toward a mesenchymal cell - there isn't enough literature for me to request a new term for EndMT CL:0000000 cell other EndoMT: endothelial-to-mesenchymal transitional cells
6 Endothelial cells CL:0000115 endothelial cell perfect match Endothelial cells
7 Fibroblasts CL:0000057 fibroblast perfect match Fibroblasts
8 Large artery CL:1000413 endothelial cell of artery missing child term Large artery endothelial cell
9 Large vein CL:0002543 vein endothelial cell missing child term Large vein endothelial cell
10 Microglia and Macrophages microglial cell is child of macrophage, annotating as macrophage CL:0000235 macrophage other Microglia and Macrophages
11 Mitochondrial weird that they kept these, keeping as just cell CL:0000000 cell other Mitochondrial
12 Neuron progenitor CL:0011020 neural progenitor cell other Neuron progenitor
13 Neurons CL:0000540 neuron perfect match Neurons
14 Oligodendrocytes CL:0000128 oligodendrocyte perfect match Oligodendrocytes
15 Pericytes CL:0000669 pericyte perfect match Pericytes
16 Proliferating cell this cluster comes from the EC specific cluster, so this is a proliferating EC not just a proliferating cell CL:0000115 endothelial cell missing child term Proliferating endothelial cell
17 Smooth muscle cells CL:0000192 smooth muscle cell perfect match Smooth muscle cells
18 Stem cells CL:0000034 stem cell perfect match Stem cells
19 Stem-to-EC A mesenchymal stem cell capable of developing into blood vessel endothelium - seems the closest term to stem to EC CL:0000566 angioblastic mesenchymal cell other Stem-to-endothelial cell transdifferentiating
20 T-cells CL:0000084 T cell perfect match T-cells
21 Vein CL:0002543 vein endothelial cell perfect match Vein endothelial cell
22 Venule CL:1000414 endothelial cell of venule perfect match Venule endothelial cell
In [ ]:
barcode_file = barcode_file.merge(cell_df_complete, left_on='cell_type', right_on='cell_type')
In [ ]:
barcode_file['cellTypeId'] = barcode_file['cellTypeId_'].values
barcode_file['cellTypeName'] = barcode_file['cellTypeName_'].values
barcode_file['cellTypeAnnotationStatus'] = barcode_file['cellTypeAnnotationStatus_'].values
In [ ]:
# optional - update cell type name and add comments
barcode_file['cell_type'] = barcode_file['cell_type_new'].values
#barcode_file['comment'] = barcode_file[['comment', 'comment_cell']].agg(' '.join, axis=1)
In [ ]:
barcode_file_complete = barcode_file[barcode_cols]
display_df(barcode_file_complete)
barcode_file_complete.to_csv(barcode_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
  barcode cluster library experiment tissue cell_type anatId_a_posteriori anatName_a_posteriori anat_a_posteriori_annotationStatus cellTypeId cellTypeName cellTypeAnnotationStatus name_Library comments
0 AAACCCAAGGACGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1 AAACCCAGTCTGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2 AAACCCAGTGATTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3 AAACCCAGTTGTGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4 AAACCCATCTGAACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5 AAACGAAAGAGATTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6 AAACGAAAGTCACGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
7 AAACGAACAGCTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
8 AAACGAACAGGAAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
9 AAACGCTAGGCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
10 AAACGCTAGTCATGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
11 AAACGCTAGTCCGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
12 AAACGCTGTCGAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
13 AAACGCTTCAAGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
14 AAACGCTTCACTTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
15 AAACGCTTCATACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
16 AAACGCTTCGGAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
17 AAACGCTTCTACTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
18 AAACGCTTCTCTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
19 AAAGAACAGATGTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
20 AAAGAACAGCACGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
21 AAAGAACAGTTGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
22 AAAGAACCATCGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
23 AAAGAACCATTCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
24 AAAGAACGTTTACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
25 AAAGGATAGGCCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
26 AAAGGATAGGCGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
27 AAAGGATCACAACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
28 AAAGGATGTACACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
29 AAAGGATGTACTTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
30 AAAGGATGTTGCATCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
31 AAAGGATTCAGTCACA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
32 AAAGGATTCCTGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
33 AAAGGATTCTCTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
34 AAAGGGCAGTAAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
35 AAAGGGCAGTCGGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
36 AAAGGGCCACCTGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
37 AAAGGGCCATGCGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
38 AAAGGGCTCCAAGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
39 AAAGGGCTCCCATACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
40 AAAGGGCTCGCATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
41 AAAGGGCTCGCGCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
42 AAAGGTAGTACCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
43 AAAGGTAGTACCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
44 AAAGGTAGTTCCCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
45 AAAGGTATCACTCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
46 AAAGTCCAGTCCCGGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
47 AAAGTCCCAAGCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
48 AAAGTCCCATCATCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
49 AAAGTCCGTACTCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
50 AAAGTCCGTCATAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
51 AAAGTCCGTCTTCATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
52 AAAGTCCGTTGTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
53 AAAGTCCTCACTGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
54 AAAGTCCTCCACTTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
55 AAAGTGAAGGTGTGAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
56 AAAGTGAAGTCCGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
57 AAAGTGAGTTAGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
58 AAAGTGATCTGAGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
59 AAATGGAAGAAGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
60 AAATGGAAGTTCCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
61 AAATGGACACGAAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
62 AAATGGACAGACGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
63 AAATGGAGTAGGACCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
64 AAATGGATCACCTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
65 AAATGGATCCTTGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
66 AAATGGATCGCGTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
67 AAATGGATCGGCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
68 AACAAAGAGAAATTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
69 AACAAAGAGGCAGTCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
70 AACAAAGCATAGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
71 AACAAAGGTGACTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
72 AACAAAGGTTACAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
73 AACAAAGTCGCCGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
74 AACAAAGTCGTCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
75 AACAAAGTCTCTATGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
76 AACAACCCAGGGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
77 AACAACCCAGTACTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
78 AACAACCCAGTATGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
79 AACAACCGTCTACGAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
80 AACAACCGTCTTACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
81 AACAACCGTGGTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
82 AACAACCTCAATCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
83 AACAACCTCGCAGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
84 AACAACCTCTTCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
85 AACAAGAAGTTGCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
86 AACAAGACAAGATCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
87 AACAAGACAGGACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
88 AACAAGATCACTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
89 AACAAGATCATCTATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
90 AACAAGATCCGAGATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
91 AACAAGATCGCATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
92 AACACACCAAGCGAGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
93 AACACACCAGGACTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
94 AACACACCATCAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
95 AACACACGTGGTTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
96 AACACACGTTGTTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
97 AACACACTCAATCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
98 AACACACTCCGGTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
99 AACACACTCTACACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
100 AACAGGGCAGATGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
101 AACAGGGCAGGATTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
102 AACAGGGGTAAGCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
103 AACAGGGGTCTACACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
104 AACAGGGTCATGCCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
105 AACAGGGTCTCTGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
106 AACCAACGTTGTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
107 AACCACAAGATACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
108 AACCACAAGCACTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
109 AACCACACACATAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
110 AACCACACATTCTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
111 AACCATGAGCCGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
112 AACCATGAGCGAGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
113 AACCATGAGGTCGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
114 AACCATGAGTCTGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
115 AACCATGCAACTTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
116 AACCATGCACTGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
117 AACCATGGTACATACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
118 AACCATGGTAGCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
119 AACCATGGTAGCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
120 AACCATGGTAGTCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
121 AACCATGGTCTCTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
122 AACCATGTCAAACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
123 AACCCAAAGAAGCGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
124 AACCCAAAGATGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
125 AACCCAACAGATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
126 AACCCAAGTATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
127 AACCCAAGTCTACAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
128 AACCCAAGTTATGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
129 AACCTGAAGCTCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
130 AACCTGACAAGAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
131 AACCTGACACGCGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
132 AACCTGACAGACCATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
133 AACCTGACATATGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
134 AACCTGATCAACTACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
135 AACCTGATCTAGTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
136 AACCTTTAGCAGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
137 AACCTTTCAAGTCATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
138 AACCTTTCAGCAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
139 AACCTTTCATGGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
140 AACCTTTTCATAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
141 AACCTTTTCCGCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
142 AACGAAAAGCGGTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
143 AACGAAAGTAGGATAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
144 AACGAAAGTCCAGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
145 AACGAAAGTCCTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
146 AACGAAATCAGTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
147 AACGGGAAGCACCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
148 AACGGGACACTCCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
149 AACGGGACAGGCTATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
150 AACGGGATCACAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
151 AACGGGATCGAAATCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
152 AACGGGATCGTGGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
153 AACGTCAAGCCAAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
154 AACGTCACACAAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
155 AACGTCACAGCAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
156 AACGTCACATCCGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
157 AACGTCACATCTTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
158 AACGTCACATTCTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
159 AACGTCAGTTGATGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
160 AACGTCAGTTTAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
161 AACGTCATCGGCGATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
162 AACTTCTAGGTCTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
163 AACTTCTAGTCAACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
164 AACTTCTCAACGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
165 AACTTCTCAGCTACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
166 AACTTCTCATGGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
167 AACTTCTCATGGCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
168 AACTTCTGTCACCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
169 AACTTCTGTGGAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
170 AACTTCTGTTTAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
171 AAGAACAAGATGGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
172 AAGAACAAGTCGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
173 AAGAACAAGTCTGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
174 AAGAACACAACGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
175 AAGAACACAACTGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
176 AAGAACACAAGGACAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
177 AAGAACACAGAGGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
178 AAGAACACAGCAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
179 AAGAACACAGCCTTCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
180 AAGAACACATAGACTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
181 AAGAACACATGGAATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
182 AAGAACAGTGTGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
183 AAGAACATCACACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
184 AAGAACATCCGTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
185 AAGACAAAGCTCGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
186 AAGACAAAGTACTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
187 AAGACAAAGTCCCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
188 AAGACAATCCTGGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
189 AAGACTCAGACGCATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
190 AAGACTCAGATGCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
191 AAGACTCAGGCCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
192 AAGACTCCACGTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
193 AAGACTCTCGTTCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
194 AAGACTCTCTTCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
195 AAGATAGAGACGGATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
196 AAGATAGAGAGGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
197 AAGATAGTCAACCCGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
198 AAGATAGTCATCGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
199 AAGATAGTCTTACGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
200 AAGCATCAGAAGGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
201 AAGCATCCAGGTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
202 AAGCATCCATTATGCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
203 AAGCATCGTGGCCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
204 AAGCATCGTTGTGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
205 AAGCATCGTTTACTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
206 AAGCATCTCGCTTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
207 AAGCCATAGAGCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
208 AAGCCATAGTCATGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
209 AAGCCATCACAAGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
210 AAGCCATCACTTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
211 AAGCCATGTACCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
212 AAGCGAGAGCATTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
213 AAGCGAGAGGCTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
214 AAGCGAGAGTTGGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
215 AAGCGAGCACCAGGTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
216 AAGCGAGGTCGCAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
217 AAGCGAGGTGCAAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
218 AAGCGAGTCATTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
219 AAGCGAGTCATTGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
220 AAGCGAGTCCCAGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
221 AAGCGAGTCCGATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
222 AAGCGTTAGCCGGATA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
223 AAGCGTTAGGGATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
224 AAGCGTTCAACAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
225 AAGCGTTCAAGGTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
226 AAGCGTTCAGGTGACA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
227 AAGCGTTCATGCGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
228 AAGCGTTGTAGCTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
229 AAGCGTTGTCTGTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
230 AAGCGTTGTGGCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
231 AAGGAATAGAGAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
232 AAGGAATAGGGACACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
233 AAGGAATAGTCCGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
234 AAGGAATCACAAGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
235 AAGGAATGTGCCTAAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
236 AAGGAATGTTCAGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
237 AAGGAATTCCTTACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
238 AAGGTAAAGAACCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
239 AAGGTAAGTCATCGCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
240 AAGGTAATCACTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
241 AAGGTAATCAGCCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
242 AAGGTAATCCGTAATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
243 AAGGTAATCTGGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
244 AAGTACCAGCCGATAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
245 AAGTACCAGCGAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
246 AAGTACCAGGGTACAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
247 AAGTACCCACCAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
248 AAGTACCGTCACCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
249 AAGTACCGTGAGTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
250 AAGTACCTCACCCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
251 AAGTCGTAGATACTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
252 AAGTCGTGTGGCGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
253 AAGTCGTGTTACCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
254 AAGTCGTGTTACTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
255 AAGTCGTTCCAAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
256 AAGTGAAAGTAAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
257 AAGTGAAAGTAGGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
258 AAGTGAAGTCACATTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
259 AAGTGAATCATTTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
260 AAGTTCGGTATGACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
261 AAGTTCGGTGAACTAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
262 AAGTTCGTCCCTATTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
263 AAGTTCGTCCGTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
264 AAGTTCGTCGTTCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
265 AAGTTCGTCTTCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
266 AATAGAGAGGGTCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
267 AATAGAGCAATCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
268 AATAGAGCACCAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
269 AATAGAGCAGTTCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
270 AATAGAGGTCCCGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
271 AATAGAGTCGAGCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
272 AATCACGCAACTGGTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
273 AATCACGCAAGAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
274 AATCACGCAATTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
275 AATCACGCAGTCGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
276 AATCACGGTCAGGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
277 AATCACGGTCTTGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
278 AATCACGTCCTCACCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
279 AATCACGTCGCAATTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
280 AATCGACAGATTGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
281 AATCGACAGCCACCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
282 AATCGACCACCGTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
283 AATCGACCAGAGTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
284 AATCGACGTAAGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
285 AATCGACGTGTAAATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
286 AATCGACTCCCAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
287 AATCGACTCCGCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
288 AATCGTGAGGTTAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
289 AATCGTGAGTAGACAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
290 AATCGTGAGTCCCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
291 AATCGTGCATGGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
292 AATCGTGGTGGGACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
293 AATCGTGTCCTAGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
294 AATCGTGTCGAGCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
295 AATGAAGCAAATTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
296 AATGAAGCAGCCATTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
297 AATGAAGGTAGGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
298 AATGAAGGTTCTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
299 AATGAAGTCAGACAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
300 AATGAAGTCCGATCTC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
301 AATGAAGTCCTACAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
302 AATGAAGTCGTAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
303 AATGACCAGAACGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
304 AATGACCAGTTGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
305 AATGACCGTACGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
306 AATGACCGTTAAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
307 AATGACCTCCACGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
308 AATGACCTCTGAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
309 AATGCCAAGGAACGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
310 AATGCCAGTAATGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
311 AATGCCAGTCTCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
312 AATGCCATCATGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
313 AATGCCATCGAAACAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
314 AATGGAAAGATGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
315 AATGGAAAGTGAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
316 AATGGAACATGAGATA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
317 AATGGAAGTGCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
318 AATGGAAGTTCCTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
319 AATGGAAGTTGCATCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
320 AATGGAATCATAGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
321 AATGGAATCCATTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
322 AATGGCTAGCGAGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
323 AATGGCTAGGACTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
324 AATGGCTAGGTATCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
325 AATGGCTAGTAACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
326 AATGGCTCACATACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
327 AATGGCTCATCGGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
328 AATGGCTGTCACTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
329 AATGGCTGTGCGTTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
330 AATGGCTTCATGTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
331 AATTCCTCACATTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
332 AATTCCTCAGAGATTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
333 AATTCCTGTAACTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
334 AATTCCTGTATGTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
335 AATTCCTTCAAGAATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
336 AATTCCTTCGAAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
337 AATTCCTTCTCAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
338 AATTCCTTCTCTCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
339 AATTTCCAGACATATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
340 AATTTCCCACGTTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
341 AATTTCCCAGGACATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
342 AATTTCCCAGGCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
343 AATTTCCTCAAGCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
344 AATTTCCTCCTTGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
345 ACAAAGAAGCTAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
346 ACAAAGACAGTCTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
347 ACAAAGAGTAAGATCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
348 ACAAAGAGTCTCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
349 ACAAAGAGTGTCTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
350 ACAAAGATCGCTGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
351 ACAAAGATCTGGGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
352 ACAAAGATCTTGCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
353 ACAACCAAGCAACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
354 ACAACCAAGGGATGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
355 ACAACCACATGTTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
356 ACAACCAGTCACGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
357 ACAACCAGTCCTCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
358 ACAACCAGTGGCTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
359 ACAACCAGTGTGGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
360 ACAACCATCAAGATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
361 ACAACCATCACGAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
362 ACAAGCTAGACAACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
363 ACAAGCTAGAGGTATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
364 ACAAGCTAGCTGACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
365 ACAAGCTAGCTTTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
366 ACAAGCTAGTATCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
367 ACAAGCTCACAGAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
368 ACAAGCTCACGGTGTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
369 ACAAGCTGTCGGTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
370 ACAAGCTTCCTAGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
371 ACACAGTAGGTCGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
372 ACACAGTAGGTTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
373 ACACAGTCAATCGCCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
374 ACACAGTCAATCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
375 ACACAGTCATCGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
376 ACACAGTTCTATCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
377 ACACCAAAGTCGAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
378 ACACCAAGTAGGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
379 ACACCAAGTATAGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
380 ACACCAAGTCATCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
381 ACACCAAGTGGGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
382 ACACCAATCCATCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
383 ACACCAATCTACTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
384 ACACCAATCTACTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
385 ACACCAATCTAGATCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
386 ACACGCGAGAAGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
387 ACACGCGAGTCAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
388 ACACGCGGTAGCGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
389 ACACGCGGTCACAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
390 ACACGCGGTGAGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
391 ACACGCGGTGGTCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
392 ACACGCGGTTCTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
393 ACACGCGTCTCATTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
394 ACACTGAAGGCGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
395 ACACTGAAGGTTCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
396 ACACTGACAGCGATTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
397 ACACTGACAGTGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
398 ACACTGACATACCACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
399 ACACTGACATGACACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
400 ACACTGAGTAGCTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
401 ACACTGAGTGCAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
402 ACACTGAGTGGTTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
403 ACACTGAGTTTAGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
404 ACACTGAGTTTGTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
405 ACACTGATCCTATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
406 ACAGAAAAGGCCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
407 ACAGAAAAGGTAAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
408 ACAGAAAGTCCCTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
409 ACAGAAAGTGTCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
410 ACAGAAAGTTATGACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
411 ACAGAAAGTTCCATTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
412 ACAGAAATCAAAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
413 ACAGAAATCAGGAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
414 ACAGCCGAGAAATTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
415 ACAGCCGCAAAGAGTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
416 ACAGCCGCAACGGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
417 ACAGCCGGTGCACGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
418 ACAGCCGGTGTATTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
419 ACAGCCGTCAATCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
420 ACAGGGAAGTAGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
421 ACAGGGAAGTGATCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
422 ACAGGGACACCAAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
423 ACAGGGACATAGAATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
424 ACAGGGACATCTTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
425 ACAGGGAGTCTTGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
426 ACAGGGAGTGGATACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
427 ACAGGGAGTTGCCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
428 ACAGGGATCTTCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
429 ACATCCCAGCGCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
430 ACATCCCAGGACACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
431 ACATCCCAGTTGTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
432 ACATCCCCACAATCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
433 ACATCCCCACGCGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
434 ACATCCCCACTACGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
435 ACATCCCCAGTAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
436 ACATCCCGTCCTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
437 ACATCCCGTGAGCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
438 ACATCCCGTGTACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
439 ACATCCCGTTCGGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
440 ACATCCCGTTGCGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
441 ACATCCCTCTCTTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
442 ACATCCCTCTGCTTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
443 ACATCCCTCTGGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
444 ACATCGAAGACGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
445 ACATCGAAGTACCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
446 ACATCGAAGTGCCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
447 ACATCGACATCGATGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
448 ACATCGAGTCTGCGCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
449 ACATCGATCATTGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
450 ACATGCAAGTGGTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
451 ACATGCAGTCCACTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
452 ACATGCAGTGTTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
453 ACATGCATCCTGTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
454 ACATGCATCTTCGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
455 ACATTTCAGGGCCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
456 ACATTTCAGGTCTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
457 ACATTTCAGTCATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
458 ACATTTCCAAGTGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
459 ACATTTCCATAATCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
460 ACATTTCGTGGACTGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
461 ACATTTCGTGTGATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
462 ACATTTCTCAGTCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
463 ACATTTCTCGCCTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
464 ACATTTCTCTCTCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
465 ACCAAACAGACGATAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
466 ACCAAACAGGACTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
467 ACCAAACAGGTAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
468 ACCAAACCACCGTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
469 ACCAAACCAGCAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
470 ACCAAACGTATTGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
471 ACCAAACGTCAACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
472 ACCAAACTCCAAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
473 ACCAAACTCGGCTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
474 ACCAACACATGTTACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
475 ACCAACAGTATACAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
476 ACCAACAGTTGGGTTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
477 ACCACAAAGAGTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
478 ACCACAAAGATCACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
479 ACCACAAAGTATGGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
480 ACCACAAAGTCACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
481 ACCACAAAGTTGTACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
482 ACCACAACAAATGGCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
483 ACCACAACAACGCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
484 ACCACAACATGGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
485 ACCACAAGTCGCGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
486 ACCACAATCCACCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
487 ACCACAATCGCACTCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
488 ACCACAATCGTGGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
489 ACCATTTAGGGCAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
490 ACCATTTCAAGTGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
491 ACCATTTGTTCGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
492 ACCATTTTCCCTAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
493 ACCATTTTCGAACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
494 ACCATTTTCTGTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
495 ACCCAAAAGAGGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
496 ACCCAAAAGCAGCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
497 ACCCAAAAGGCTTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
498 ACCCAAAAGTCACTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
499 ACCCAAACAGGGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
500 ACCCAAACATACAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
501 ACCCAAAGTTTACGAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
502 ACCCAAATCCGTGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
503 ACCCAAATCGGTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
504 ACCCTCAAGAAATTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
505 ACCCTCAAGTACAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
506 ACCCTCAAGTACCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
507 ACCCTCACAATTGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
508 ACCCTCACAGTGGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
509 ACCCTCACATCGAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
510 ACCCTCAGTGATTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
511 ACCCTCAGTTGCTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
512 ACCCTCATCTACTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
513 ACCCTTGAGGACAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
514 ACCCTTGAGGTATCTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
515 ACCCTTGCAAAGGATT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
516 ACCCTTGCAACGCATT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
517 ACCCTTGGTCAACATC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
518 ACCCTTGGTTGCATCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
519 ACCCTTGTCAAATAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
520 ACCCTTGTCTCCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
521 ACCGTTCAGACTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
522 ACCGTTCAGATCCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
523 ACCGTTCAGGAATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
524 ACCGTTCCACAGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
525 ACCGTTCCAGATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
526 ACCGTTCCATCATCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
527 ACCGTTCGTCACATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
528 ACCGTTCTCATACAGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
529 ACCGTTCTCGGTAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
530 ACCTACCCAGTGTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
531 ACCTACCGTATTGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
532 ACCTACCTCGTGTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
533 ACCTGAAAGACGAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
534 ACCTGAAAGCGACCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
535 ACCTGAAAGGAAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
536 ACCTGAAAGGATAATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
537 ACCTGAAAGGGCAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
538 ACCTGAACAACACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
539 ACCTGAACAACTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
540 ACCTGAACACCTGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
541 ACCTGAACACTCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
542 ACCTGAATCGCATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
543 ACCTGAATCTTAGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
544 ACCTGTCAGAAGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
545 ACCTGTCAGCGCTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
546 ACCTGTCAGGTTGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
547 ACCTGTCAGTGAGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
548 ACCTGTCCACCATATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
549 ACCTGTCCATTCGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
550 ACCTGTCGTAGCTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
551 ACCTGTCGTCTCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
552 ACCTGTCGTGGACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
553 ACCTGTCGTTTCCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
554 ACCTGTCTCCCTGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
555 ACGATCAAGACTAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
556 ACGATCAAGGGTCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
557 ACGATCACACTGTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
558 ACGATCAGTTGCTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
559 ACGATCAGTTTCCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
560 ACGATCATCGGTCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
561 ACGATGTAGAGTTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
562 ACGATGTAGATGAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
563 ACGATGTCACGGTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
564 ACGATGTCACGTAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
565 ACGATGTCATAACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
566 ACGATGTGTCGTGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
567 ACGATGTTCCGGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
568 ACGATGTTCCGTGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
569 ACGATGTTCGTGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
570 ACGCACGAGCCTTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
571 ACGCACGAGGATATAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
572 ACGCACGAGTTTCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
573 ACGCACGAGTTTGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
574 ACGCACGCAACAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
575 ACGCACGCAATAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
576 ACGCACGCATATACCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
577 ACGCACGCATCCAACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
578 ACGCACGGTCGCTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
579 ACGCACGGTGGTTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
580 ACGCACGGTGTCTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
581 ACGCACGGTTCGTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
582 ACGCACGTCCACACCT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
583 ACGGAAGGTGCCTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
584 ACGGAAGTCAACTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
585 ACGGAAGTCCATCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
586 ACGGGTCAGCACTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
587 ACGGGTCAGGTACATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
588 ACGGGTCCAGAAATTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
589 ACGGGTCTCACACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
590 ACGGTCGAGCGATGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
591 ACGGTCGCACAGTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
592 ACGGTCGGTGGCTACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
593 ACGGTCGTCCTACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
594 ACGGTTAAGATCCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
595 ACGGTTAAGCTGTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
596 ACGGTTAAGTGCACTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
597 ACGGTTAAGTGGGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
598 ACGGTTACAACTCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
599 ACGGTTAGTAGGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
600 ACGGTTAGTCGACGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
601 ACGGTTATCCTAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
602 ACGGTTATCGTGAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
603 ACGGTTATCTTCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
604 ACGTAACAGATACATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
605 ACGTAACAGCCGATAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
606 ACGTAACAGCTCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
607 ACGTAACCAACCAATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
608 ACGTAACCACAGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
609 ACGTAACGTCCAGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
610 ACGTAACGTGTCTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
611 ACGTACAAGGTTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
612 ACGTACACAATAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
613 ACGTACAGTGGGATTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
614 ACGTACATCGCAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
615 ACGTACATCTGAGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
616 ACGTAGTAGGAACGCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
617 ACGTAGTCAAGATGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
618 ACGTAGTCACCAAATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
619 ACGTAGTCAGTAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
620 ACGTAGTCATCGGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
621 ACGTAGTGTGACATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
622 ACGTAGTGTGACCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
623 ACGTAGTGTGGCTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
624 ACGTAGTTCCTTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
625 ACGTCCTAGTCACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
626 ACGTCCTAGTTCAACC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
627 ACGTCCTAGTTTGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
628 ACGTCCTCACCTTCGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
629 ACGTCCTCAGGGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
630 ACGTCCTCATAGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
631 ACGTCCTCATCAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
632 ACGTCCTGTAACAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
633 ACGTCCTGTACGCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
634 ACGTCCTGTCTAGATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
635 ACGTCCTGTGGCTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
636 ACGTCCTGTTCCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
637 ACGTCCTTCCATACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
638 ACGTTCCAGAGTCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
639 ACGTTCCCAACAGATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
640 ACGTTCCCAATCTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
641 ACGTTCCGTACCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
642 ACGTTCCGTGTTGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
643 ACGTTCCGTTACCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
644 ACGTTCCTCCCATAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
645 ACGTTCCTCCGGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
646 ACGTTCCTCTTTGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
647 ACTACGAAGCATGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
648 ACTACGAAGTTGCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
649 ACTACGACACTGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
650 ACTACGACATCGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
651 ACTACGATCCATTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
652 ACTACGATCGCAAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
653 ACTATCTAGAAAGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
654 ACTATCTAGAGTTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
655 ACTATCTAGCGATTCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
656 ACTATCTCAACGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
657 ACTATCTGTCTTGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
658 ACTATCTGTGACCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
659 ACTATCTTCATTTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
660 ACTATCTTCCGATAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
661 ACTATGGAGCGATGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
662 ACTATGGAGTCAACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
663 ACTATGGCAATGACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
664 ACTATGGCACACCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
665 ACTATGGCACCTGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
666 ACTATGGCAGCTACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
667 ACTATGGCATTGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
668 ACTATGGGTCGGTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
669 ACTATGGTCAATCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
670 ACTATGGTCCGTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
671 ACTATGGTCGTCACCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
672 ACTATGGTCTTACGGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
673 ACTATTCAGCTCACTA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
674 ACTATTCCACCCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
675 ACTATTCGTACAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
676 ACTATTCTCCACTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
677 ACTATTCTCCCGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
678 ACTATTCTCCGATCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
679 ACTCCCAAGAAGGATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
680 ACTCCCAAGCATGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
681 ACTCCCAAGCCAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
682 ACTCCCAAGGAAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
683 ACTCCCACAAGTTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
684 ACTCCCACACCCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
685 ACTCCCAGTCTTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
686 ACTCCCATCAGCCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
687 ACTCTCGGTACAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
688 ACTCTCGGTCCTTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
689 ACTCTCGTCGAGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
690 ACTCTCGTCGCCCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
691 ACTCTCGTCTAGTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
692 ACTCTCGTCTTCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
693 ACTGATGAGAAGCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
694 ACTGATGAGATAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
695 ACTGATGAGATGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
696 ACTGATGAGCCAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
697 ACTGATGCAATAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
698 ACTGATGGTGGCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
699 ACTGATGGTTGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
700 ACTGCAAAGAATGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
701 ACTGCAACACTCATAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
702 ACTGCAACACTCCACT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
703 ACTGCAAGTCACTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
704 ACTGCAAGTTAGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
705 ACTGCAATCCTCAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
706 ACTGTCCAGGTGGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
707 ACTGTCCAGTCGGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
708 ACTGTCCCAGACACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
709 ACTGTCCGTGCGACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
710 ACTGTCCTCCGCACGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
711 ACTGTGAAGCACTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
712 ACTGTGAAGGACCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
713 ACTGTGAAGGCACAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
714 ACTGTGACAGGACATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
715 ACTGTGACAGTAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
716 ACTGTGACATGACGAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
717 ACTGTGAGTCACAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
718 ACTGTGAGTCTCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
719 ACTTAGGAGCCGAATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
720 ACTTAGGAGCGTATAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
721 ACTTAGGAGTCATGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
722 ACTTAGGCAAAGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
723 ACTTAGGCAAGGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
724 ACTTAGGGTCTGCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
725 ACTTAGGGTTGACTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
726 ACTTAGGGTTGCTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
727 ACTTATCCATGAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
728 ACTTATCCATTCCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
729 ACTTATCGTAGACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
730 ACTTATCGTGGCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
731 ACTTATCGTTGCAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
732 ACTTCCGCAGACTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
733 ACTTCCGGTTTGAACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
734 ACTTCCGTCACTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
735 ACTTCGCAGTATCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
736 ACTTCGCCACAGCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
737 ACTTCGCCACCAGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
738 ACTTCGCCACCCTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
739 ACTTCGCCAGCAGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
740 ACTTCGCTCGCTCATC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
741 ACTTCGCTCGGCATAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
742 ACTTCGCTCGTAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
743 ACTTCGCTCTTCCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
744 ACTTTCAAGAGGGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
745 ACTTTCACAGATCATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
746 ACTTTCACATGTGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
747 ACTTTCAGTACCATAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
748 ACTTTCATCTTCTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
749 ACTTTGTAGTAACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
750 ACTTTGTCAACTGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
751 ACTTTGTGTTCGGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
752 AGAAATGAGTTGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
753 AGAAATGGTCCGATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
754 AGAAATGGTTTGGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
755 AGAAATGTCACACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
756 AGAAATGTCGGAAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
757 AGAACAAAGCACACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
758 AGAACAAAGGAACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
759 AGAACAAAGTTGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
760 AGAACAAGTCGTGATT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
761 AGAACAATCCTCCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
762 AGAACAATCTAGCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
763 AGAACCTAGGATACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
764 AGAACCTCACATATCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
765 AGAACCTCAGTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
766 AGAACCTGTACTGACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
767 AGAACCTGTCGAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
768 AGAACCTGTTTCGACA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
769 AGAACCTTCAGAACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
770 AGAAGCGAGCCAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
771 AGAAGCGAGGCTGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
772 AGAAGCGAGTCTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
773 AGAAGCGCAACCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
774 AGAAGCGGTCCCGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
775 AGAAGCGGTGCCCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
776 AGAAGCGGTGTTGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
777 AGAAGCGGTTATCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
778 AGAAGCGGTTATGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
779 AGAAGCGTCCGTAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
780 AGAAGCGTCGGATACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
781 AGAAGCGTCTTTGCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
782 AGAAGTAAGGCGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
783 AGAAGTAAGGCTGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
784 AGAAGTACAATACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
785 AGAAGTACACCTGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
786 AGAAGTAGTCATCCCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
787 AGAAGTATCCATACTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
788 AGAAGTATCTAATTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
789 AGAAGTATCTGCGATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
790 AGACAAAAGATTCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
791 AGACAAACAAATAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
792 AGACAAACACGTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
793 AGACAAACAGCTGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
794 AGACAAAGTAGCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
795 AGACAAATCACGTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
796 AGACAAATCTATACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
797 AGACACTCAAGGCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
798 AGACACTGTATCGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
799 AGACACTTCACGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
800 AGACACTTCGGATAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
801 AGACACTTCTAGACAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
802 AGACAGGAGCAGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
803 AGACAGGCAACTCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
804 AGACAGGGTCTCACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
805 AGACAGGTCACCATAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
806 AGACCATAGGATGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
807 AGACCATCACTACCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
808 AGACCATCAGAACTAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
809 AGACCATCAGCACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
810 AGACCATCAGGGTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
811 AGACCATCATATTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
812 AGACCATGTACCATAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
813 AGACCATGTGGCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
814 AGACCATGTTGGTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
815 AGACCATGTTTGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
816 AGACCATTCGGAGATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
817 AGACCCGAGACCTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
818 AGACCCGAGTAGGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
819 AGACCCGAGTCTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
820 AGACCCGCAAATTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
821 AGACCCGCAGTACTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
822 AGACCCGCAGTGTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
823 AGACCCGCATGCGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
824 AGACCCGGTGGTTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
825 AGACTCACACAAGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
826 AGACTCACATCCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
827 AGACTCACATCTAACG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
828 AGACTCACATGTTACG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
829 AGACTCAGTTTGGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
830 AGACTCATCGGCTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
831 AGACTCATCTCGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
832 AGAGAATAGGAGGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
833 AGAGAATCAGAACTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
834 AGAGAATCAGCGTTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
835 AGAGAATGTCACCTTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
836 AGAGAATGTCTCGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
837 AGAGAATTCATTTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
838 AGAGAATTCGGTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
839 AGAGAGCAGTCACTAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
840 AGAGAGCAGTCCCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
841 AGAGAGCCAATATCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
842 AGAGAGCCACGTGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
843 AGAGAGCGTATGCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
844 AGAGAGCGTGTCATGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
845 AGAGAGCTCACTTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
846 AGAGAGCTCAGACAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
847 AGAGAGCTCCGCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
848 AGAGAGCTCCTTGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
849 AGAGCAGAGTGATTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
850 AGAGCAGCAACATCGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
851 AGAGCAGCAGATTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
852 AGAGCAGCATGACTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
853 AGAGCAGGTTTCAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
854 AGAGCAGTCTCATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
855 AGAGCCCAGCTTGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
856 AGAGCCCCAGCTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
857 AGAGCCCCAGTTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
858 AGAGCCCGTATTCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
859 AGAGCCCGTCAAAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
860 AGAGCCCGTCTTGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
861 AGAGCCCGTTATGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
862 AGAGCCCGTTCCCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
863 AGAGCCCTCTCAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
864 AGAGCCCTCTCGTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
865 AGATAGACAATAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
866 AGATAGACACATGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
867 AGATAGACATAGGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
868 AGATAGAGTACTGCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
869 AGATAGAGTTTCGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
870 AGATAGATCGCTTTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
871 AGATCCAAGTCGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
872 AGATCCACAGTCTACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
873 AGATCCAGTAGCCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
874 AGATCCAGTAGGCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
875 AGATCCAGTATCCTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
876 AGATCCAGTATGCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
877 AGATCCAGTGAGATTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
878 AGATCCATCAATCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
879 AGATCCATCCCTATTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
880 AGATCGTAGATGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
881 AGATCGTAGGGCCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
882 AGATCGTGTACATTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
883 AGATCGTTCCAGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
884 AGATCGTTCTGAATCG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
885 AGATGAAAGCGATGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
886 AGATGAAAGCGCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
887 AGATGAACAACTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
888 AGATGAACAATGTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
889 AGATGAACATAACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
890 AGATGAAGTTCAAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
891 AGATGAATCGCAAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
892 AGATGCTAGTCAGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
893 AGATGCTGTAGTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
894 AGATGCTGTATGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
895 AGATGCTTCCGCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
896 AGCATCACAAAGGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
897 AGCATCACACATTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
898 AGCATCACACTATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
899 AGCATCAGTCGTGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
900 AGCATCAGTCTCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
901 AGCATCAGTGCGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
902 AGCATCATCCTTGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
903 AGCATCATCGGTGCAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
904 AGCCAATAGCGCATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
905 AGCCAATAGGCAGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
906 AGCCAATCACGGTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
907 AGCCAATCATGCAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
908 AGCCAATGTAGATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
909 AGCCAATGTGTGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
910 AGCCAATTCCTTCACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
911 AGCCAATTCGTCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
912 AGCCACGGTCCTGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
913 AGCCACGGTGAGATAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
914 AGCCACGGTTCCCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
915 AGCCACGTCGCTAATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
916 AGCCACGTCGGTATGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
917 AGCCAGCAGAAGTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
918 AGCCAGCAGCCGATTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
919 AGCCAGCGTACGGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
920 AGCCAGCTCAGACCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
921 AGCGATTAGATACCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
922 AGCGATTAGCAATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
923 AGCGATTAGCAGGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
924 AGCGATTAGGATATGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
925 AGCGATTGTCATCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
926 AGCGATTGTGCGTTTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
927 AGCGATTGTTGTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
928 AGCGATTGTTTACCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
929 AGCGATTTCACCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
930 AGCGCCAAGAGCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
931 AGCGCCAAGCACGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
932 AGCGCCAAGCCAAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
933 AGCGCCAAGCGAGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
934 AGCGCCAAGTCTCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
935 AGCGCCACAATTGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
936 AGCGCCACAGCCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
937 AGCGCCAGTGTCTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
938 AGCGCCAGTTTACTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
939 AGCGCCATCAAGCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
940 AGCGCTGAGATACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
941 AGCGCTGAGCTAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
942 AGCGCTGAGCTGGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
943 AGCGCTGAGGAAAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
944 AGCGCTGCACCCAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
945 AGCGCTGGTCACAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
946 AGCGCTGGTGTTGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
947 AGCGCTGGTTCGCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
948 AGCGTATAGACTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
949 AGCGTATAGAGCAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
950 AGCGTATAGAGGGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
951 AGCGTATAGATACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
952 AGCGTATAGGCTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
953 AGCGTATCACGTAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
954 AGCGTATCATCACCAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
955 AGCGTATGTAGAATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
956 AGCGTATGTCTGTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
957 AGCGTATGTTAAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
958 AGCGTATGTTAACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
959 AGCGTATTCCCAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
960 AGCGTCGCAGCGACAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
961 AGCGTCGGTGTCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
962 AGCTACAAGTCACGAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
963 AGCTACACAGCTGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
964 AGCTACAGTCTAGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
965 AGCTACATCAAGTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
966 AGCTACATCCTACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
967 AGCTCAAAGAGTTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
968 AGCTCAACATATCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
969 AGCTCAACATTACGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
970 AGCTCAAGTGCCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
971 AGCTCAATCCGTGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
972 AGCTTCCAGATCCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
973 AGCTTCCAGTGACACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
974 AGCTTCCCAAGCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
975 AGCTTCCGTAGCCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
976 AGCTTCCGTCATCCGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
977 AGCTTCCGTGGCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
978 AGCTTCCGTTCCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
979 AGCTTCCTCATCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
980 AGCTTCCTCATTACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
981 AGCTTCCTCCCAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
982 AGCTTCCTCGCACGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
983 AGGAAATAGACTCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
984 AGGAAATAGAGCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
985 AGGAAATAGCGTTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
986 AGGAAATAGTTGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
987 AGGAAATTCTCCGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
988 AGGAATAAGGGTTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
989 AGGAATACAAGACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
990 AGGAATACAATGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
991 AGGAATACATGCAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
992 AGGAATATCCGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
993 AGGACGAAGCGACTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
994 AGGACGACAAGATCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
995 AGGACGACACACCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
996 AGGACGAGTGGATCAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
997 AGGACGAGTTGCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
998 AGGACGATCGAAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
999 AGGACGATCGTGGGTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1000 AGGACGATCTAGTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1001 AGGACGATCTGGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1002 AGGACTTAGAGTTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1003 AGGACTTAGATTGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1004 AGGACTTCACCCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1005 AGGACTTCAGAGAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1006 AGGACTTCAGCCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1007 AGGACTTCATAGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1008 AGGACTTCATGTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1009 AGGACTTGTAATGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1010 AGGACTTGTACAAACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1011 AGGACTTGTACCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1012 AGGACTTGTCGAATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1013 AGGACTTGTGAACTAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1014 AGGACTTGTTATGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1015 AGGACTTTCGCCAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1016 AGGACTTTCTAAGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1017 AGGAGGTAGAAGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1018 AGGAGGTAGGTTATAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1019 AGGAGGTCAGCATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1020 AGGAGGTTCCGATCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1021 AGGAGGTTCGAATGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1022 AGGAGGTTCTAGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1023 AGGATAAAGTCGCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1024 AGGATAACAACTCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1025 AGGATAACAAGCGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1026 AGGATAAGTGCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1027 AGGATAATCACAAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1028 AGGATAATCCTGTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1029 AGGATAATCGATACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1030 AGGATCTAGAATCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1031 AGGATCTAGACCATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1032 AGGATCTAGTTCCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1033 AGGCATTAGAGGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1034 AGGCATTAGTACCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1035 AGGCATTCAGACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1036 AGGCATTCAGGTAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1037 AGGCATTTCACCTTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1038 AGGCCACAGATAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1039 AGGCCACAGGCCTAAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1040 AGGCCACAGGTTAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1041 AGGCCACCAGGAATCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1042 AGGCCACCAGGACTTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1043 AGGCCACCATCATTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1044 AGGCCACCATTGGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1045 AGGCCACGTCTAGATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1046 AGGCTGCAGAGATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1047 AGGCTGCCATGACTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1048 AGGCTGCGTGACATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1049 AGGCTGCGTGTCATCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1050 AGGCTGCGTTACAGCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1051 AGGCTGCTCCCTATTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1052 AGGCTGCTCTGCGATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1053 AGGGAGTAGAGCAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1054 AGGGAGTAGCACCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1055 AGGGAGTCACGAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1056 AGGGAGTGTATGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1057 AGGGAGTGTGGATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1058 AGGGAGTTCAGACCGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1059 AGGGAGTTCCACATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1060 AGGGCCTAGACCAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1061 AGGGCCTAGATCCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1062 AGGGCCTAGATTGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1063 AGGGCCTAGCGCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1064 AGGGCCTAGTTAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1065 AGGGCCTCAGCAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1066 AGGGCCTCAGCGTATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1067 AGGGCCTCAGCTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1068 AGGGCTCAGAGAGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1069 AGGGCTCAGGCACTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1070 AGGGCTCAGTATGGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1071 AGGGCTCCAAGTCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1072 AGGGCTCCAGGCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1073 AGGGCTCCAGTCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1074 AGGGCTCCATCGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1075 AGGGCTCGTGTCCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1076 AGGGCTCTCATCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1077 AGGGCTCTCCTGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1078 AGGGCTCTCTCGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1079 AGGGTCCAGCCTGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1080 AGGGTCCCACACTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1081 AGGGTCCGTGTTTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1082 AGGGTCCTCAGCCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1083 AGGGTGAGTAGATCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1084 AGGGTGATCGACCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1085 AGGGTGATCTGCTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1086 AGGGTTTAGACCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1087 AGGGTTTCAATGCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1088 AGGGTTTCACTGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1089 AGGGTTTGTCTGTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1090 AGGGTTTGTTAAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1091 AGGGTTTGTTCCACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1092 AGGGTTTTCATCAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1093 AGGGTTTTCGGCCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1094 AGGTAGGAGAGGCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1095 AGGTAGGAGGTGGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1096 AGGTAGGCAACGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1097 AGGTAGGCACAGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1098 AGGTAGGCACTGAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1099 AGGTAGGCAGGAGACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1100 AGGTAGGGTCAGCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1101 AGGTAGGGTCTACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1102 AGGTAGGGTGAAAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1103 AGGTAGGTCATTTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1104 AGGTAGGTCCGCGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1105 AGGTCATAGCTAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1106 AGGTCATAGGACAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1107 AGGTCATCAGCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1108 AGGTCATCAGTTAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1109 AGGTCATCATCGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1110 AGGTCATTCGCCTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1111 AGGTCATTCTGGGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1112 AGGTCTAAGACCTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1113 AGGTCTAAGCACTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1114 AGGTCTAAGGACGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1115 AGGTCTACAAACAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1116 AGGTCTACAAGATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1117 AGGTCTAGTCGTCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1118 AGGTCTAGTGTCCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1119 AGGTGTTAGAGCAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1120 AGGTGTTAGCAAACAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1121 AGGTGTTAGGTTTACC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1122 AGGTGTTAGTGCCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1123 AGGTGTTAGTTGTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1124 AGGTGTTCAACCCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1125 AGGTGTTCATGCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1126 AGGTGTTTCATTTGCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1127 AGGTGTTTCGATTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1128 AGGTTACAGACCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1129 AGGTTACAGCAGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1130 AGGTTACAGGTAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1131 AGGTTACGTCGGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1132 AGGTTACGTTATCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1133 AGGTTACTCAGACAAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1134 AGGTTGTAGAGAGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1135 AGGTTGTAGGAGTATT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1136 AGGTTGTAGTGATCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1137 AGGTTGTCAAGACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1138 AGGTTGTCAAGCCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1139 AGGTTGTCAAGGTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1140 AGGTTGTGTACGGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1141 AGGTTGTGTTCGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1142 AGGTTGTTCTTAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1143 AGTAACCAGAGCATAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1144 AGTAACCAGTGACACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1145 AGTAACCCAGACACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1146 AGTAACCCAGAGAATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1147 AGTAACCCAGGCCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1148 AGTAACCCAGTTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1149 AGTAACCGTAGGAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1150 AGTAACCGTTCTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1151 AGTAACCTCAGCTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1152 AGTACCAAGCGAGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1153 AGTACCACAGATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1154 AGTACCACATTGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1155 AGTACCAGTACCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1156 AGTACCAGTCAAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1157 AGTACCAGTCTCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1158 AGTACCAGTTGAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1159 AGTACCATCAGTGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1160 AGTACCATCCTCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1161 AGTACCATCGCGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1162 AGTACCATCTCTTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1163 AGTACTGAGAAGTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1164 AGTACTGAGTCTTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1165 AGTACTGAGTTCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1166 AGTACTGCAATGCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1167 AGTACTGCACAAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1168 AGTACTGCACCCAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1169 AGTACTGCAGACTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1170 AGTACTGCATACACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1171 AGTACTGTCATGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1172 AGTAGCTCACTGTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1173 AGTAGCTCAGCAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1174 AGTAGCTGTTAGAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1175 AGTAGCTTCACTTATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1176 AGTAGTCAGTTGCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1177 AGTAGTCCAATTCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1178 AGTAGTCCAATTTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1179 AGTAGTCGTACTCGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1180 AGTCAACAGTGGTTAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1181 AGTCAACCATAACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1182 AGTCAACCATGAGATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1183 AGTCAACCATGCCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1184 AGTCAACCATGTTACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1185 AGTCACAAGATACTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1186 AGTCACAAGCTGTGCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1187 AGTCACAAGGAGACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1188 AGTCACAGTGGAAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1189 AGTCACAGTTCCTACC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1190 AGTCACATCACTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1191 AGTCACATCCACGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1192 AGTCACATCCCGAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1193 AGTCACATCTTCTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1194 AGTCATGAGAGAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1195 AGTCATGAGGAAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1196 AGTCATGAGGCCACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1197 AGTCATGAGTAACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1198 AGTCATGCAGACCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1199 AGTCATGCAGATACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1200 AGTCATGCAGGGAATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1201 AGTCATGCATCGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1202 AGTCATGCATGAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1203 AGTCATGGTCCGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1204 AGTCATGGTTGCGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1205 AGTCATGTCATAAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1206 AGTCATGTCGCTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1207 AGTCTCCAGTTTCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1208 AGTCTCCCAACGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1209 AGTCTCCCATATCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1210 AGTCTCCCATTGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1211 AGTCTCCGTCTGTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1212 AGTCTCCTCGACGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1213 AGTGACTCACACTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1214 AGTGACTCACATCATG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1215 AGTGACTCATTGCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1216 AGTGACTGTCCAGCGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1217 AGTGACTGTCCTCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1218 AGTGACTTCGACATCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1219 AGTGACTTCGTAACTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1220 AGTGACTTCTGTTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1221 AGTGATCAGCCACAAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1222 AGTGATCAGCTTAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1223 AGTGATCCACGCTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1224 AGTGATCGTAATCAAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1225 AGTGATCGTCACGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1226 AGTGATCGTGACTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1227 AGTGATCGTTAGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1228 AGTGATCTCATGCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1229 AGTGATCTCCACGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1230 AGTGCCGAGCTTCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1231 AGTGCCGCAAACCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1232 AGTGCCGCAAGCGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1233 AGTGCCGCAATAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1234 AGTGCCGCAATCCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1235 AGTGCCGCATCACGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1236 AGTGCCGCATGGGAAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1237 AGTGCCGGTAGCACGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1238 AGTGCCGGTGTGACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1239 AGTGCCGGTTCAAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1240 AGTGCCGGTTTGAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1241 AGTGCCGTCCCAACTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1242 AGTGCCGTCGCTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1243 AGTGCCGTCTGACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1244 AGTGTTGCAACCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1245 AGTGTTGCATAACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1246 AGTGTTGGTACTTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1247 AGTGTTGGTTAGGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1248 AGTGTTGTCACTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1249 AGTGTTGTCGGCTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1250 AGTTAGCAGAATCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1251 AGTTAGCAGGCTAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1252 AGTTAGCAGGTCTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1253 AGTTAGCCACTGAATC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1254 AGTTAGCGTACATACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1255 AGTTAGCGTCCATACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1256 AGTTAGCTCGAATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1257 AGTTAGCTCGTCGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1258 AGTTAGCTCTTCTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1259 AGTTCCCAGACATCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1260 AGTTCCCAGCATTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1261 AGTTCCCAGCCATTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1262 AGTTCCCAGGCTCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1263 AGTTCCCCAGAGGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1264 AGTTCCCCATAGATCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1265 AGTTCCCGTGACGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1266 AGTTCGAAGAGGCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1267 AGTTCGAAGTCGGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1268 AGTTCGAAGTTGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1269 AGTTCGACATCAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1270 AGTTCGACATGAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1271 AGTTCGAGTGAAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1272 AGTTCGATCGAATGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1273 ATACCGAAGAACCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1274 ATACCGAAGTACTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1275 ATACCGAAGTTGCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1276 ATACCGACAGAGGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1277 ATACCGAGTCTATGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1278 ATACCGAGTGTAGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1279 ATACCGAGTTAGGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1280 ATACCGATCAGTGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1281 ATACCGATCATTGGTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1282 ATACCGATCTGGCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1283 ATACCGATCTTGGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1284 ATACCTTAGACTCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1285 ATACCTTAGGTGCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1286 ATACCTTCATTGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1287 ATACCTTGTAATGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1288 ATACCTTGTCGGTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1289 ATACCTTGTGGTTTGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1290 ATACCTTGTTACACTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1291 ATACCTTTCCACACCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1292 ATACCTTTCGAGTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1293 ATACCTTTCGAGTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1294 ATACTTCCATCTTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1295 ATACTTCGTTAGTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1296 ATACTTCTCAAATGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1297 ATACTTCTCCACCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1298 ATACTTCTCCTCTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1299 ATAGACCAGATTGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1300 ATAGACCCACCAAATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1301 ATAGACCCAGAAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1302 ATAGACCCAGCGACAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1303 ATAGACCGTAACTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1304 ATAGACCGTACTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1305 ATAGACCGTGATTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1306 ATAGACCGTTATGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1307 ATAGACCTCTAGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1308 ATAGAGAAGCATAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1309 ATAGAGAAGTATAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1310 ATAGAGACAAGCGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1311 ATAGAGACACATGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1312 ATAGAGACACTGCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1313 ATAGAGACAGCACAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1314 ATAGAGACATGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1315 ATAGAGAGTAGTAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1316 ATAGAGAGTCGAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1317 ATAGAGAGTGCAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1318 ATAGAGATCAATCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1319 ATAGGCTAGCCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1320 ATAGGCTCAGCATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1321 ATAGGCTCATAACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1322 ATAGGCTTCGCAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1323 ATAGGCTTCGCCTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1324 ATATCCTAGAAGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1325 ATATCCTAGAATTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1326 ATATCCTAGAGTGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1327 ATATCCTAGATCACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1328 ATATCCTAGATGTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1329 ATATCCTAGGTACTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1330 ATATCCTGTCACTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1331 ATATCCTGTCAGCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1332 ATATCCTGTTGGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1333 ATATCCTTCCGATCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1334 ATCACAGAGAAACTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1335 ATCACAGAGTACTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1336 ATCACAGAGTTCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1337 ATCACAGCAATCTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1338 ATCACAGCACCCAATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1339 ATCACAGCACGCAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1340 ATCACAGCATGACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1341 ATCACGAAGACTCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1342 ATCACGAAGAGTCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1343 ATCACGAAGAGTGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1344 ATCACGACAAATGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1345 ATCACGACAGACAATA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1346 ATCACGAGTGTTTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1347 ATCACGATCCCGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1348 ATCACGATCCGACGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1349 ATCACGATCCTTATCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1350 ATCACTTAGCGTGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1351 ATCACTTGTAATGATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1352 ATCACTTGTCCACTCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1353 ATCACTTGTGTTCCTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1354 ATCACTTGTTATTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1355 ATCACTTTCACTACGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1356 ATCACTTTCTTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1357 ATCAGGTCAGCCCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1358 ATCAGGTCATCCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1359 ATCAGGTGTAAGGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1360 ATCAGGTGTACGCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1361 ATCAGGTGTCTACAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1362 ATCAGGTGTGCCCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1363 ATCAGGTGTGTCATGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1364 ATCAGGTTCATTGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1365 ATCAGGTTCATTGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1366 ATCATTCCAGCGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1367 ATCATTCCATCGAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1368 ATCCACCAGCATCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1369 ATCCACCAGTACCATC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1370 ATCCACCCACGGCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1371 ATCCACCTCCCACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1372 ATCCACCTCCGTATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1373 ATCCACCTCGCTGATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1374 ATCCACCTCGTCTACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1375 ATCCATTAGGCATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1376 ATCCATTAGTAAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1377 ATCCATTAGTCAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1378 ATCCATTCAAAGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1379 ATCCATTCATCGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1380 ATCCATTTCACGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1381 ATCCCTGAGGCTTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1382 ATCCCTGCAGATTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1383 ATCCCTGGTCGTCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1384 ATCCGTCAGAGTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1385 ATCCGTCCAGAATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1386 ATCCGTCCATGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1387 ATCCTATAGAGCCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1388 ATCCTATAGGACATCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1389 ATCCTATAGGGAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1390 ATCCTATAGGTTGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1391 ATCCTATCATAGGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1392 ATCCTATGTCACTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1393 ATCCTATGTTGCGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1394 ATCCTATTCACTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1395 ATCCTATTCCGATCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1396 ATCCTATTCGCTGACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1397 ATCCTATTCGTGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1398 ATCGATGAGGTGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1399 ATCGATGAGGTTGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1400 ATCGATGAGTGGATAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1401 ATCGATGGTATCTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1402 ATCGATGTCAAGTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1403 ATCGATGTCGCTCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1404 ATCGCCTAGAAGTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1405 ATCGCCTAGACGCTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1406 ATCGCCTCAAAGCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1407 ATCGCCTCAAATCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1408 ATCGCCTCATCGTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1409 ATCGCCTGTACAAACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1410 ATCGCCTTCCCTTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1411 ATCGCCTTCTGCGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1412 ATCGGATAGAGCAACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1413 ATCGGATCAGCGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1414 ATCGGATCAGTCGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1415 ATCGGATGTCCTGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1416 ATCGGATGTCGCGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1417 ATCGGCGAGGCTGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1418 ATCGGCGCAACAGAGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1419 ATCGGCGCAACTCATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1420 ATCGGCGGTTGTATGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1421 ATCGTAGAGGTTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1422 ATCGTAGCAACCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1423 ATCGTAGCAAGACCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1424 ATCGTAGCAGAAGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1425 ATCGTAGCATCGGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1426 ATCGTAGTCGACGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1427 ATCGTAGTCGCTAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1428 ATCGTAGTCGGTTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1429 ATCGTCCAGTGCAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1430 ATCGTCCCACCATAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1431 ATCGTCCGTATCGATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1432 ATCGTCCGTTTCGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1433 ATCGTCCTCGTAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1434 ATCGTGAAGACTCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1435 ATCGTGACATCTCATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1436 ATCGTGAGTACCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1437 ATCGTGAGTCGTTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1438 ATCGTGATCCCGAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1439 ATCGTGATCGGTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1440 ATCTCTAAGACCCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1441 ATCTCTAAGCGCATCC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1442 ATCTCTAAGTATCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1443 ATCTCTAGTGCACGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1444 ATCTCTATCGCAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1445 ATCTTCAAGATGCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1446 ATCTTCAAGGTTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1447 ATCTTCACATAGACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1448 ATCTTCATCATAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1449 ATCTTCATCGCCTATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1450 ATGAAAGGTAAGTAGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1451 ATGAAAGGTGTACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1452 ATGAAAGTCATTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1453 ATGAAAGTCGCAATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1454 ATGACCAAGGTTCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1455 ATGACCACACGAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1456 ATGACCAGTCAACATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1457 ATGACCATCACTTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1458 ATGACCATCCATTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1459 ATGAGGGAGCACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1460 ATGAGGGAGCAGCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1461 ATGAGGGAGCAGTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1462 ATGAGGGAGTCTCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1463 ATGAGGGCAGATCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1464 ATGAGGGCAGCACAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1465 ATGAGGGGTCATGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1466 ATGAGGGGTGGCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1467 ATGAGGGGTGTAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1468 ATGAGGGGTTTGTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1469 ATGAGGGTCAGAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1470 ATGAGGGTCCCAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1471 ATGAGGGTCTAAACGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1472 ATGAGTCAGCCACCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1473 ATGAGTCCAGCTTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1474 ATGAGTCGTAACATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1475 ATGAGTCGTAGCGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1476 ATGAGTCTCATTTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1477 ATGAGTCTCGTTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1478 ATGATCGAGAATAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1479 ATGATCGAGCACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1480 ATGATCGAGTAGGAAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1481 ATGATCGAGTTCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1482 ATGATCGCACCTGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1483 ATGATCGCACGCTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1484 ATGATCGCAGAGATGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1485 ATGATCGGTGGTCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1486 ATGATCGGTTCCCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1487 ATGATCGTCTCGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1488 ATGCATGAGACCATTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1489 ATGCATGAGCCGTTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1490 ATGCATGCAAGTGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1491 ATGCATGCACTCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1492 ATGCATGGTGAATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1493 ATGCATGTCCGCACGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1494 ATGCATGTCGATGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1495 ATGCATGTCGCGTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1496 ATGCATGTCGTCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1497 ATGCCTCAGGCGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1498 ATGCCTCAGTACCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1499 ATGCCTCGTCTTACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1500 ATGCCTCGTGAGATTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1501 ATGCCTCTCACCTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1502 ATGCCTCTCTGTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1503 ATGCGATAGACCAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1504 ATGCGATCAACTCATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1505 ATGCGATCACCACTGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1506 ATGCGATCAGTAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1507 ATGCGATGTAACATAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1508 ATGCGATGTACTGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1509 ATGCGATGTGGTGATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1510 ATGCGATGTTGCATCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1511 ATGGAGGAGATTGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1512 ATGGAGGCACCCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1513 ATGGAGGCAGTGGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1514 ATGGAGGCATGACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1515 ATGGAGGTCATTTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1516 ATGGAGGTCGATTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1517 ATGGAGGTCGTACCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1518 ATGGATCAGGAGGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1519 ATGGATCAGGCCATAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1520 ATGGATCCACATGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1521 ATGGATCCAGGTTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1522 ATGGATCCATACTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1523 ATGGATCGTAAGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1524 ATGGATCGTATGAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1525 ATGGATCGTTGGCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1526 ATGGATCTCAAATAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1527 ATGGATCTCCCGAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1528 ATGGATCTCCGTGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1529 ATGGATCTCGTTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1530 ATGGGAGAGCGTGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1531 ATGGGAGAGTGAGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1532 ATGGGAGAGTGGTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1533 ATGGGAGAGTTGCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1534 ATGGGAGCACAGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1535 ATGGGAGCAGAAATCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1536 ATGGGAGCAGCCTACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1537 ATGGGAGCATCCAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1538 ATGGGAGGTACCGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1539 ATGGGAGGTGCCCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1540 ATGGGAGGTGGCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1541 ATGGGAGTCACCTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1542 ATGGGAGTCGAGTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1543 ATGGGAGTCTTAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1544 ATGGGTTAGAAGGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1545 ATGGGTTCATGAAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1546 ATGGGTTGTACAAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1547 ATGGGTTGTGCACATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1548 ATGGGTTGTTGAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1549 ATGGGTTTCCCTTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1550 ATGGGTTTCTCAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1551 ATGGTTGAGTTGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1552 ATGGTTGCAACTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1553 ATGGTTGCAATCACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1554 ATGGTTGCAGCGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1555 ATGGTTGGTAGATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1556 ATGGTTGGTGGGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1557 ATGGTTGTCACTGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1558 ATGGTTGTCCCGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1559 ATGGTTGTCCCGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1560 ATGGTTGTCTAGCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1561 ATGTCCCAGGCGACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1562 ATGTCCCAGTATCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1563 ATGTCCCAGTATGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1564 ATGTCCCGTCTAGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1565 ATGTCCCTCATAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1566 ATGTCTTCAGAGAATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1567 ATGTCTTGTATGAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1568 ATGTCTTGTCCGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1569 ATGTCTTTCGGCTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1570 ATGTCTTTCGGTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1571 ATTACCTCACTTGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1572 ATTACCTCAGTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1573 ATTACCTGTACCTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1574 ATTACCTTCGTAGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1575 ATTACTCCACTCTAGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1576 ATTACTCCATGTGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1577 ATTACTCGTAACATAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1578 ATTACTCGTCGTGATT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1579 ATTACTCGTGACTATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1580 ATTACTCGTGTAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1581 ATTACTCTCCGTGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1582 ATTACTCTCCTTGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1583 ATTATCCCAAACCACT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1584 ATTATCCCACACTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1585 ATTATCCCACCATATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1586 ATTATCCCATATGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1587 ATTATCCGTCATCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1588 ATTATCCTCAGCGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1589 ATTATCCTCTGGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1590 ATTCACTAGCAAATGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1591 ATTCACTAGCATTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1592 ATTCACTCAGAACATA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1593 ATTCACTCAGAGCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1594 ATTCACTCATCCGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1595 ATTCACTCATGTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1596 ATTCACTGTACCCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1597 ATTCACTGTAGCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1598 ATTCACTTCAGAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1599 ATTCACTTCTCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1600 ATTCACTTCTCTCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1601 ATTCAGGCAGTCCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1602 ATTCAGGCATAGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1603 ATTCAGGGTATAGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1604 ATTCAGGGTGACGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1605 ATTCAGGGTTAAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1606 ATTCAGGGTTACCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1607 ATTCAGGGTTTGCCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1608 ATTCAGGTCCATACAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1609 ATTCATCAGAGAGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1610 ATTCATCAGTCTTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1611 ATTCATCCAAGGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1612 ATTCATCCAATTGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1613 ATTCATCCAGGATCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1614 ATTCATCGTCGTATTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1615 ATTCATCGTTGTGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1616 ATTCATCTCCGTAATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1617 ATTCCATAGCCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1618 ATTCCATCAAACTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1619 ATTCCATTCAGAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1620 ATTCCATTCGAGATGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1621 ATTCCATTCTCTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1622 ATTCCCGCAAGAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1623 ATTCCCGCAAGGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1624 ATTCCCGCACCGGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1625 ATTCCCGCAGCAAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1626 ATTCCCGGTCGCACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1627 ATTCCCGTCAGCCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1628 ATTCCCGTCATCGACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1629 ATTCCCGTCGGATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1630 ATTCCTAAGACTCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1631 ATTCCTACAGGCGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1632 ATTCCTACATCGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1633 ATTCCTACATGACTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1634 ATTCCTACATGGAATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1635 ATTCCTAGTACCATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1636 ATTCCTAGTGACTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1637 ATTCCTATCAGACCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1638 ATTCCTATCCAGTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1639 ATTCGTTAGACGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1640 ATTCGTTCACGCAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1641 ATTCGTTCATGGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1642 ATTCGTTGTCGTCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1643 ATTCGTTGTGCGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1644 ATTCGTTTCACGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1645 ATTCGTTTCATCCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1646 ATTCGTTTCGCGGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1647 ATTCTACCAGAGCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1648 ATTCTACCAGCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1649 ATTCTACGTATTTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1650 ATTCTACTCGGAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1651 ATTCTTGAGGTTGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1652 ATTCTTGCAAGCCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1653 ATTCTTGCATTGTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1654 ATTCTTGGTCAATCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1655 ATTCTTGGTGGAAATT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1656 ATTCTTGTCACTTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1657 ATTCTTGTCATTGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1658 ATTCTTGTCCATCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1659 ATTCTTGTCCGCTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1660 ATTCTTGTCCTAGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1661 ATTGGGTAGACCACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1662 ATTGGGTAGAGGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1663 ATTGGGTAGTGGATTA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1664 ATTGGGTCAAGTAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1665 ATTGGGTCACTAAACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1666 ATTGGGTTCTCTAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1667 ATTGTTCAGCGAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1668 ATTGTTCAGGATCATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1669 ATTGTTCCATCCAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1670 ATTGTTCGTACTTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1671 ATTGTTCGTGAACCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1672 ATTGTTCTCAAAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1673 ATTGTTCTCACCATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1674 ATTTACCAGCGACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1675 ATTTACCAGGCCCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1676 ATTTACCCAAGCGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1677 ATTTACCGTATGAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1678 ATTTACCTCCCTTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1679 ATTTCACAGACATCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1680 ATTTCACAGCAAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1681 ATTTCACAGCCAAGTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1682 ATTTCACCATCCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1683 ATTTCACGTAAGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1684 ATTTCACGTTGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1685 ATTTCACTCCACTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1686 ATTTCACTCCTTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1687 ATTTCTGAGCGACATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1688 ATTTCTGAGGGCCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1689 ATTTCTGAGGTTACAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1690 ATTTCTGCAAGTGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1691 ATTTCTGGTCACTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1692 ATTTCTGGTCAGGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1693 ATTTCTGTCATTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1694 ATTTCTGTCTAAGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1695 ATTTCTGTCTGCACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1696 CAAAGAAAGGACAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1697 CAAAGAACAATTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1698 CAAAGAACACGGTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1699 CAAAGAACAGGTACGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1700 CAAAGAACAGTGACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1701 CAAAGAAGTACGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1702 CAAAGAAGTAGGGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1703 CAAAGAAGTCATGGCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1704 CAAAGAATCACCATCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1705 CAAAGAATCCAACACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1706 CAAAGAATCGCTCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1707 CAAAGAATCTATTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1708 CAAAGAATCTTTGCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1709 CAACAACAGAATTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1710 CAACAACAGGGACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1711 CAACAACGTGTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1712 CAACAACGTTCCAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1713 CAACAACGTTGGGAAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1714 CAACAACTCCCAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1715 CAACAACTCCCAGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1716 CAACAACTCTAGCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1717 CAACAGTAGAGCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1718 CAACAGTAGGACACTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1719 CAACAGTAGGAGAATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1720 CAACAGTCACAAATGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1721 CAACAGTCACTGTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1722 CAACAGTCAGGTTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1723 CAACAGTGTAGAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1724 CAACAGTTCAGACAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1725 CAACAGTTCCGTTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1726 CAACAGTTCTGGGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1727 CAACAGTTCTGGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1728 CAACAGTTCTTAGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1729 CAACCAACAACGTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1730 CAACCAACACTTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1731 CAACCAACATCAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1732 CAACCAACATTGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1733 CAACCAAGTCAGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1734 CAACCAAGTGTTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1735 CAACCAATCATTTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1736 CAACCAATCGCGTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1737 CAACCAATCTCGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1738 CAACCTCAGCATATGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1739 CAACCTCAGCTGTTAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1740 CAACCTCCAGGTTCAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1741 CAACCTCCATGGCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1742 CAACCTCTCTCACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1743 CAACGATCACAAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1744 CAACGATGTAGATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1745 CAACGATGTATCTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1746 CAACGATTCGAAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1747 CAACGATTCGGAACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1748 CAACGGCAGTCTTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1749 CAACGGCCACGAAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1750 CAACGGCTCACCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1751 CAACGGCTCCTTCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1752 CAACGGCTCGTTACCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1753 CAAGACTAGACGCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1754 CAAGACTAGGGAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1755 CAAGACTCACCGTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1756 CAAGACTCAGTCGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1757 CAAGACTGTGTAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1758 CAAGACTGTTACAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1759 CAAGACTTCATGCCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1760 CAAGACTTCTTTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1761 CAAGAGGAGCTACAAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1762 CAAGAGGAGTCTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1763 CAAGAGGAGTTACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1764 CAAGAGGCACCGCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1765 CAAGAGGGTTACGCCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1766 CAAGAGGTCGCTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1767 CAAGCTAAGTTGTACC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1768 CAAGCTAGTGAGCTCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1769 CAAGCTATCGAAACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1770 CAAGCTATCGTGCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1771 CAAGGGAAGAGTTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1772 CAAGGGACAATTCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1773 CAAGGGACACTTTATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1774 CAAGGGAGTAAGGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1775 CAAGGGAGTAGTGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1776 CAAGGGAGTCTCACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1777 CAAGGGAGTTGTTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1778 CAAGGGATCATGGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1779 CAATACGAGACCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1780 CAATACGAGGTCACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1781 CAATACGCAACTGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1782 CAATACGGTTCGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1783 CAATACGTCGGCTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1784 CAATCGAAGAATTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1785 CAATCGAAGCTTCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1786 CAATCGAAGGCAGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1787 CAATCGACAATGCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1788 CAATCGACAATTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1789 CAATCGACAGTCAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1790 CAATCGACATGTGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1791 CAATCGAGTTGTTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1792 CAATGACAGCTGGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1793 CAATGACAGTGCACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1794 CAATGACCACGCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1795 CAATGACGTATGTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1796 CAATGACGTGCATGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1797 CAATGACGTGGTACAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1798 CAATGACTCGACATAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1799 CAATTTCCATCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1800 CAATTTCGTATCGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1801 CAATTTCGTTAGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1802 CAATTTCTCGCAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1803 CACAACAAGCCATTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1804 CACAACAAGGTAAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1805 CACAACAAGTTCATGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1806 CACAACATCAAGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1807 CACACAAAGCGACTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1808 CACACAAAGCGATTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1809 CACACAAAGCTAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1810 CACACAAAGGTTAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1811 CACACAAAGTATGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1812 CACACAAAGTGTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1813 CACACAACAATCCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1814 CACACAAGTGACGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1815 CACACAAGTTGAGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1816 CACAGATAGACATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1817 CACAGATAGATTAGCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1818 CACAGATCAAGGCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1819 CACAGATCAAGTTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1820 CACAGATGTATGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1821 CACAGATGTCAAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1822 CACAGATGTCTCTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1823 CACAGGCAGCAGCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1824 CACAGGCAGCGAGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1825 CACAGGCAGGCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1826 CACAGGCCAGACGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1827 CACAGGCCAGGTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1828 CACAGGCGTAGTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1829 CACAGGCTCACTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1830 CACAGGCTCCATAGAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1831 CACAGGCTCTGGAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1832 CACATGAAGAAGTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1833 CACATGAAGACCTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1834 CACATGAAGTAAGACT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1835 CACATGACACTGAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1836 CACATGACAGGGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1837 CACATGACAGTAACCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1838 CACATGAGTCGATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1839 CACATGAGTTCATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1840 CACATGATCCTCTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1841 CACCAAAAGTCACTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1842 CACCAAAAGTTGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1843 CACCAAACAGAACTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1844 CACCAAAGTCAATCTG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1845 CACCAAAGTGTAAATG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1846 CACCAAAGTTACCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1847 CACCAAAGTTCGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1848 CACCAAATCCCGGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1849 CACCGTTAGACAACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1850 CACCGTTAGGAACATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1851 CACCGTTCAACTGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1852 CACCGTTCAGCACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1853 CACCGTTGTTGTGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1854 CACCGTTTCCTAAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1855 CACCGTTTCTGGGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1856 CACGAATAGCATTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1857 CACGAATGTTATGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1858 CACGAATGTTGCCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1859 CACGGGTCAAATGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1860 CACGGGTGTGAGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1861 CACGGGTGTTCCGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1862 CACGGGTGTTCTCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1863 CACGGGTTCTCTGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1864 CACGTGGAGTATGACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1865 CACGTGGCAATAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1866 CACGTGGCAGTATGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1867 CACGTGGGTGGCTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1868 CACGTTCAGATAGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1869 CACGTTCAGTGCTACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1870 CACGTTCCAGAACCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1871 CACGTTCCAGAGGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1872 CACGTTCCATTGAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1873 CACGTTCGTACATACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1874 CACGTTCGTAGCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1875 CACGTTCGTTGACGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1876 CACTAAGAGGCACTAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1877 CACTAAGCAGAACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1878 CACTAAGCAGCGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1879 CACTAAGCAGCTTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1880 CACTAAGCATAATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1881 CACTAAGGTACTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1882 CACTAAGGTGTAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1883 CACTAAGGTTCAAACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1884 CACTAAGTCGCTAATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1885 CACTAAGTCTCAATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1886 CACTGAAAGCTGAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1887 CACTGAAAGTGTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1888 CACTGAACAATCCTAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1889 CACTGAAGTTCCGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1890 CACTGAAGTTCTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1891 CACTGAATCCGACATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1892 CACTGAATCTCTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1893 CACTGGGAGAAACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1894 CACTGGGAGTCGGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1895 CACTGGGCAAGACCGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1896 CACTGGGCATATAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1897 CACTGGGGTCTGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1898 CACTGGGTCAAACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1899 CACTGGGTCAAGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1900 CACTGGGTCATTGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1901 CACTGTCAGGATTACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1902 CACTGTCAGGTAAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1903 CACTGTCAGTGGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1904 CACTGTCCAGGATTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1905 CACTGTCGTTCCGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1906 CACTGTCTCCCGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1907 CACTGTCTCGGCATAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1908 CACTTCGAGGTCCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1909 CACTTCGAGTTGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1910 CACTTCGGTAAGCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1911 CACTTCGGTCGAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1912 CACTTCGTCGCAAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1913 CAGAGCCAGCACTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1914 CAGAGCCAGGATACGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1915 CAGAGCCCAAAGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1916 CAGAGCCCAGGCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1917 CAGAGCCCATTAAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1918 CAGATACAGGAGAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1919 CAGATACAGGCATTTC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1920 CAGATACAGGGTCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1921 CAGATACAGTGGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1922 CAGATACCAAACTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1923 CAGATACCAAGGATGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1924 CAGATACCAATCAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1925 CAGATACCACAAAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1926 CAGATACCATCCTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1927 CAGATACGTACGTAGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1928 CAGATACGTACGTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1929 CAGATACGTAGAGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1930 CAGATACTCGACATTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1931 CAGATACTCGGAACTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1932 CAGATACTCTACCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1933 CAGATCAAGAGAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1934 CAGATCAAGTCCGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1935 CAGATCACAATCGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1936 CAGATCAGTAATTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1937 CAGATCAGTTCATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1938 CAGATCATCACGGGCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1939 CAGATTGAGAGCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1940 CAGATTGCACATTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1941 CAGATTGCACGGCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1942 CAGATTGCAGCAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1943 CAGATTGCATTCAGCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1944 CAGATTGCATTGCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1945 CAGATTGGTAGCTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1946 CAGATTGGTCGTTATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1947 CAGATTGGTGACGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1948 CAGATTGTCCACTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1949 CAGATTGTCGCTAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1950 CAGCAATAGCCGCACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1951 CAGCAATAGGGATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1952 CAGCAATCAGGTTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1953 CAGCAATCATAATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1954 CAGCAATGTGGTACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1955 CAGCACGAGAGAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1956 CAGCACGAGCCTCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1957 CAGCACGAGGCACCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1958 CAGCACGCACTAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1959 CAGCACGCAGTCGTTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1960 CAGCACGCATACCATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1961 CAGCACGTCGACCATA SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1962 CAGCAGCAGATGCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1963 CAGCAGCAGTCACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1964 CAGCAGCCAAACACGG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1965 CAGCAGCCACATTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1966 CAGCAGCCATGACCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1967 CAGCAGCCATTCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1968 CAGCAGCCATTGTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1969 CAGCAGCGTAGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1970 CAGCCAGAGAATTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1971 CAGCCAGAGGAAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1972 CAGCCAGAGGGTAATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1973 CAGCCAGCAAACGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1974 CAGCCAGCATCGCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1975 CAGCGTGCAATAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1976 CAGCGTGCAATGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1977 CAGCGTGCACGGTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1978 CAGCGTGGTGGAACAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1979 CAGGCCACACCTCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1980 CAGGCCACACGTAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1981 CAGGCCACACTCCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1982 CAGGCCACAGGAATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1983 CAGGCCAGTTAGGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1984 CAGGCCAGTTCGATTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1985 CAGGCCATCGCCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1986 CAGGCCATCTACCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1987 CAGGGCTCACTGTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1988 CAGGGCTCATACTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1989 CAGGGCTGTACTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1990 CAGGGCTGTAGCGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1991 CAGGGCTGTCTGTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1992 CAGGTATAGATGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1993 CAGGTATCAACTGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1994 CAGGTATGTAGCTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1995 CAGGTATGTATACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1996 CAGGTATGTTGTAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1997 CAGGTATGTTTGTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1998 CAGTGCGAGAAGGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
1999 CAGTGCGAGCCTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2000 CAGTGCGAGGACGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2001 CAGTGCGAGGATTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2002 CAGTGCGCACTAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2003 CAGTGCGCACTGGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2004 CAGTGCGCAGACCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2005 CAGTGCGCATTGAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2006 CAGTGCGGTGCAAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2007 CAGTGCGGTTGCTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2008 CAGTGCGTCAGTGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2009 CAGTGCGTCTGAGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2010 CAGTTAGAGCTGTGCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2011 CAGTTAGAGGAACATT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2012 CAGTTAGCAACGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2013 CAGTTAGCAATACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2014 CAGTTAGCACAATGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2015 CAGTTAGGTCGAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2016 CAGTTAGGTTGTTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2017 CAGTTAGTCCAAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2018 CAGTTAGTCCCGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2019 CAGTTCCCAGGCTACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2020 CAGTTCCGTAAGTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2021 CAGTTCCGTCTATGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2022 CAGTTCCGTTATCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2023 CAGTTCCTCAAAGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2024 CAGTTCCTCACCATAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2025 CAGTTCCTCCTAGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2026 CATAAGCAGATTCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2027 CATAAGCAGCCTAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2028 CATAAGCAGCGACTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2029 CATAAGCAGCTGGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2030 CATACAGAGACGTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2031 CATACAGAGGGAGATA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2032 CATACAGCACTACCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2033 CATACAGCAGCGACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2034 CATACAGCAGCTTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2035 CATACAGGTACAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2036 CATACAGGTGGACTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2037 CATACAGTCTATCACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2038 CATACCCAGAATTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2039 CATACCCGTCCTTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2040 CATACCCGTGCGGATA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2041 CATACCCTCCCGGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2042 CATACCCTCGAGCACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2043 CATACTTAGAAGCGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2044 CATACTTAGAATTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2045 CATACTTAGGAACATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2046 CATACTTCACGTTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2047 CATACTTCAGCTGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2048 CATACTTGTCTTCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2049 CATACTTGTCTTGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2050 CATACTTGTGGACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2051 CATACTTTCCACCTCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2052 CATACTTTCTAACACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2053 CATACTTTCTGTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2054 CATAGACAGTAGGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2055 CATAGACCAAAGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2056 CATAGACCAACGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2057 CATAGACGTCTCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2058 CATAGACTCTAGTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2059 CATCAAGCAATAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2060 CATCAAGCAATGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2061 CATCAAGGTCATGACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2062 CATCAAGGTCCACTCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2063 CATCAAGGTGCGTGCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2064 CATCAAGTCATTACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2065 CATCAAGTCGCTCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2066 CATCAAGTCTCTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2067 CATCCACAGATGCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2068 CATCCACGTCTAGATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2069 CATCCACGTGATTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2070 CATCCACGTTGAGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2071 CATCCACTCGCGGACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2072 CATCCACTCTAGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2073 CATCCCAAGCGTTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2074 CATCCCAAGTTCCGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2075 CATCCCAAGTTGTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2076 CATCCCACACAAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2077 CATCCCATCCATTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2078 CATCCGTAGAAGCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2079 CATCCGTAGCGAAACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2080 CATCCGTAGGGTGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2081 CATCCGTCAAAGTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2082 CATCCGTGTCATAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2083 CATCCGTTCGTTCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2084 CATCGCTAGTGAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2085 CATCGCTCAACATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2086 CATCGCTGTACTGACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2087 CATCGGGAGCTTTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2088 CATCGGGCAAACCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2089 CATCGGGCAAGTATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2090 CATCGGGCAATGTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2091 CATCGGGCACTCTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2092 CATCGGGCAGCACACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2093 CATCGGGCAGTTCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2094 CATCGGGGTGACACGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2095 CATCGGGGTTTGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2096 CATCGGGTCTTCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2097 CATCGTCCACGAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2098 CATCGTCCATTAAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2099 CATCGTCGTACCTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2100 CATCGTCTCACAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2101 CATCGTCTCGTGGTAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2102 CATGAGTCAGGTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2103 CATGAGTTCGGTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2104 CATGCAAAGAACTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2105 CATGCAAAGTTGGACG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2106 CATGCAACAATGCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2107 CATGCAAGTAGTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2108 CATGCAAGTCCCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2109 CATGCAAGTCGCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2110 CATGCAATCCGTATGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2111 CATGCCTAGAGCATAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2112 CATGCCTCAAACCATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2113 CATGCCTCAGCGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2114 CATGCCTGTTATGGTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2115 CATGCCTTCACCTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2116 CATGCCTTCAGACCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2117 CATGCCTTCATCACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2118 CATGCCTTCTCCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2119 CATGCCTTCTCTTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2120 CATGCCTTCTGCGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2121 CATGCGGAGATTCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2122 CATGCGGAGTATGGCG SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2123 CATGCGGAGTGGTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2124 CATGCGGCAGCTATTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2125 CATGCGGTCCTCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2126 CATGCGGTCCTTCACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2127 CATGCGGTCGTGGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2128 CATGCTCAGACGGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2129 CATGCTCAGCATTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2130 CATGCTCAGCCACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2131 CATGCTCAGTGAATAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2132 CATGCTCAGTTTGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2133 CATGCTCGTCAGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2134 CATGCTCGTTGTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2135 CATGCTCTCGTTCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2136 CATGCTCTCTTCGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2137 CATGGATAGAAGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2138 CATGGATCAACGGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2139 CATGGATCAGGAATAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2140 CATGGATGTCTTGAAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2141 CATGGTACAGCTATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2142 CATGGTACATGACTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2143 CATGGTAGTGTTGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2144 CATGGTAGTTTGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2145 CATGGTATCAATCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2146 CATTCATAGAAATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2147 CATTCATCAGCATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2148 CATTCATCAGGTCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2149 CATTCATCATTCTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2150 CATTCATGTCTCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2151 CATTCATGTGAGCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2152 CATTCATGTTGGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2153 CATTCATTCAAGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2154 CATTCATTCCGTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2155 CATTCCGAGCCACCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2156 CATTCCGAGTTGCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2157 CATTCCGTCCGTTGGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2158 CATTCTAAGATGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2159 CATTCTAGTGCCGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2160 CATTCTATCACTCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2161 CATTCTATCCAGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2162 CATTCTATCGAGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2163 CATTCTATCGCCTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2164 CATTCTATCTTAGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2165 CATTGAGCAAATGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2166 CATTGAGCAGAGGACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2167 CATTGCCCATCCTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2168 CATTGCCGTATCCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2169 CATTGCCGTCATGACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2170 CATTGCCGTCGTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2171 CATTGCCGTCTACTGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2172 CATTGCCGTGTCCATA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2173 CATTGCCTCGTGCATA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2174 CATTGCCTCTAGTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2175 CATTGCCTCTTGTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2176 CATTGTTAGTGTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2177 CATTGTTCAATATCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2178 CATTGTTGTCACTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2179 CATTTCACACGCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2180 CATTTCACAGCCTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2181 CATTTCAGTGAGTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2182 CATTTCATCAAGTGGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2183 CATTTCATCCGTGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2184 CATTTCATCTAGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2185 CATTTCATCTTTGATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2186 CCAAGCGAGAATCTAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2187 CCAAGCGAGATTAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2188 CCAAGCGAGCTTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2189 CCAAGCGAGGTGATAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2190 CCAAGCGCATCTCGTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2191 CCAAGCGGTATTGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2192 CCAAGCGTCAGTCATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2193 CCAAGCGTCTTAAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2194 CCAATGAAGACTGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2195 CCAATGAAGGATACAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2196 CCAATGATCTCCTACG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2197 CCAATGATCTCTCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2198 CCAATTTCATATGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2199 CCAATTTGTGAGATTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2200 CCAATTTTCTTGGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2201 CCACAAAAGACCACGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2202 CCACAAAAGGAATGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2203 CCACAAAAGTCCTACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2204 CCACAAAAGTTTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2205 CCACAAACAAGTCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2206 CCACAAACATGTTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2207 CCACAAAGTCTTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2208 CCACAAATCAGAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2209 CCACAAATCGTGCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2210 CCACAAATCTGGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2211 CCACACTAGGACTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2212 CCACACTCACGGCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2213 CCACACTCATACTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2214 CCACACTTCATCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2215 CCACACTTCCATCACC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2216 CCACACTTCTTAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2217 CCACCATAGCAATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2218 CCACCATAGCATTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2219 CCACCATAGGAGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2220 CCACCATGTGTCCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2221 CCACCATTCAGTCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2222 CCACGAGAGCAAATCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2223 CCACGAGAGTGCCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2224 CCACGAGGTATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2225 CCACGAGGTCACTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2226 CCACGAGGTGTAAACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2227 CCACGAGGTGTCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2228 CCACGTTAGTAAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2229 CCACGTTCAATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2230 CCACGTTCACCCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2231 CCACGTTGTCACAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2232 CCACGTTGTGTCGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2233 CCACGTTTCACCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2234 CCACGTTTCCAAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2235 CCACGTTTCGAGAAGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2236 CCACGTTTCGCTATTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2237 CCACGTTTCTCATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2238 CCACTTGAGACCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2239 CCACTTGAGCGCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2240 CCACTTGCAATCGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2241 CCACTTGCAGGTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2242 CCACTTGCATCTTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2243 CCACTTGGTCGGTACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2244 CCACTTGGTTAGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2245 CCACTTGTCCCATACC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2246 CCACTTGTCGCACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2247 CCATAAGAGCAGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2248 CCATAAGAGGACAACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2249 CCATAAGCAAGATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2250 CCATAAGCACTAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2251 CCATAAGCATGAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2252 CCATAAGGTCCCTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2253 CCATCACAGCGGTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2254 CCATCACAGTCCCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2255 CCATCACCACGTTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2256 CCATCACGTACCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2257 CCATCACGTACTAACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2258 CCATCACGTGCTGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2259 CCATCACTCCGCACTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2260 CCATCACTCGCACGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2261 CCATCACTCGTGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2262 CCCAACTAGAGTGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2263 CCCAACTAGGATGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2264 CCCAACTAGGCTAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2265 CCCAACTCATTGTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2266 CCCAACTGTCTGTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2267 CCCAACTTCAACGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2268 CCCATTGAGACCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2269 CCCATTGAGAGCAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2270 CCCATTGAGTCGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2271 CCCATTGCAGTTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2272 CCCATTGCAGTTGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2273 CCCATTGGTTCTTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2274 CCCATTGTCTGAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2275 CCCGAAGAGTCATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2276 CCCGAAGGTCAACCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2277 CCCGAAGGTCACTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2278 CCCGAAGGTCGCTTAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2279 CCCGAAGGTCGTAATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2280 CCCGAAGGTGTATACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2281 CCCGAAGTCATAGACC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2282 CCCGGAAAGCGCCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2283 CCCGGAAAGTCTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2284 CCCGGAAGTCAACATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2285 CCCGGAAGTGATTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2286 CCCGGAAGTGCTGCAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2287 CCCGGAAGTGTTTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2288 CCCGGAATCGACGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2289 CCCGGAATCGCAACAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2290 CCCTAACCAATTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2291 CCCTAACCACATTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2292 CCCTAACGTATGAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2293 CCCTAACGTCCACTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2294 CCCTAACGTCTAACTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2295 CCCTAACGTTCGGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2296 CCCTCAAAGCGGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2297 CCCTCAAAGGTACCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2298 CCCTCAAAGGTTCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2299 CCCTCAACATCCTATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2300 CCCTCAAGTAACACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2301 CCCTCAATCTTCGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2302 CCCTCTCAGAATTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2303 CCCTCTCAGACCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2304 CCCTCTCAGGGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2305 CCCTCTCCAAGGCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2306 CCCTCTCCACAAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2307 CCCTCTCCACTCCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2308 CCCTCTCCAGTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2309 CCCTCTCGTCCTGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2310 CCCTCTCGTTGCATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2311 CCCTGATAGACGCATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2312 CCCTGATAGATGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2313 CCCTGATAGGTCGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2314 CCCTGATAGTGCACTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2315 CCCTGATAGTGTTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2316 CCCTGATCAACCCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2317 CCCTGATCAGCTACTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2318 CCCTGATGTCTACGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2319 CCCTGATTCTGTTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2320 CCCTTAGAGGTCCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2321 CCCTTAGCACGTTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2322 CCCTTAGGTCTTTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2323 CCGAACGAGATGACCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2324 CCGAACGAGCGACTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2325 CCGAACGAGCTACGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2326 CCGAACGAGTGAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2327 CCGAACGCAGAGAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2328 CCGAACGGTGTAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2329 CCGAACGTCGTCGATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2330 CCGAACGTCTCCCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2331 CCGATCTAGCCTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2332 CCGATCTAGCGACTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2333 CCGATCTAGCTATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2334 CCGATCTAGGATATGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2335 CCGATCTAGGCTTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2336 CCGATCTAGGGACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2337 CCGATCTTCCGAACGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2338 CCGATGGAGCTGTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2339 CCGATGGCACTCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2340 CCGATGGTCAGACAAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2341 CCGATGGTCCACGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2342 CCGATGGTCCACGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2343 CCGATGGTCTTCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2344 CCGCAAGAGCAGCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2345 CCGCAAGCAATATCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2346 CCGCAAGCACACGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2347 CCGCAAGCACATCATG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2348 CCGCAAGCACCGGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2349 CCGCAAGCAGATCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2350 CCGCAAGGTACACGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2351 CCGCAAGGTATTGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2352 CCGCAAGGTCGTAATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2353 CCGCAAGTCCGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2354 CCGCAAGTCGAAGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2355 CCGCAAGTCGTAGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2356 CCGGACAAGCCGATTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2357 CCGGACACAACGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2358 CCGGACACATCATCTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2359 CCGGACAGTCAGGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2360 CCGGACAGTCTGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2361 CCGGACAGTGTGGACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2362 CCGGACATCAGTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2363 CCGGACATCCGGACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2364 CCGGACATCTACTATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2365 CCGGGTAAGCCTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2366 CCGGGTACACGGTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2367 CCGGGTACATGACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2368 CCGGGTATCCTACCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2369 CCGGTAGAGTGTTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2370 CCGGTAGCAAATGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2371 CCGGTAGCATCACGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2372 CCGGTAGTCTGTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2373 CCGGTGAAGACTACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2374 CCGGTGAAGGAGACCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2375 CCGGTGACAGCAAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2376 CCGGTGACAGCTGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2377 CCGGTGAGTATCCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2378 CCGGTGAGTCGAGATG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2379 CCGGTGAGTCTGTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2380 CCGGTGAGTTCCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2381 CCGGTGATCAAAGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2382 CCGGTGATCAGGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2383 CCGGTGATCGATGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2384 CCGTAGGAGATGGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2385 CCGTAGGAGGCGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2386 CCGTAGGAGTATGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2387 CCGTAGGCACACGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2388 CCGTAGGCAGAACTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2389 CCGTAGGGTCACTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2390 CCGTAGGGTCCAAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2391 CCGTAGGGTTTCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2392 CCGTAGGTCAAGTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2393 CCGTAGGTCGTGCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2394 CCGTGAGCAAATAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2395 CCGTGAGCAGACAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2396 CCGTGAGGTCGGTACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2397 CCGTGAGTCATCCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2398 CCGTGAGTCCTTCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2399 CCGTGAGTCGTAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2400 CCGTTCAAGCGTTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2401 CCGTTCAAGTCCGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2402 CCGTTCACACATACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2403 CCGTTCACAGGACTAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2404 CCTAACCAGACTTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2405 CCTAACCAGGATTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2406 CCTAACCAGTTAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2407 CCTAACCCAATAAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2408 CCTAACCCAATGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2409 CCTAACCGTACTGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2410 CCTAACCGTATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2411 CCTAACCGTATGAGAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2412 CCTAACCGTCCCTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2413 CCTAACCGTGGGTATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2414 CCTAACCTCGGTAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2415 CCTAACCTCGGTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2416 CCTAACCTCGTGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2417 CCTAACCTCTGACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2418 CCTAAGAAGACGCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2419 CCTAAGAAGAGTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2420 CCTAAGAAGCATACTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2421 CCTAAGAAGGGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2422 CCTAAGAAGTCTCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2423 CCTAAGACAATAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2424 CCTAAGACACCGGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2425 CCTAAGACATATGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2426 CCTAAGATCCTTACCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2427 CCTACGTAGTTGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2428 CCTACGTCACTACCGG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2429 CCTACGTCAGACCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2430 CCTACGTCATTGCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2431 CCTACGTGTTGGGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2432 CCTACGTTCCTCAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2433 CCTATCGAGAGACAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2434 CCTATCGAGCCTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2435 CCTATCGAGCTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2436 CCTATCGAGTGCTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2437 CCTATCGCAGACCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2438 CCTATCGGTTATGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2439 CCTATCGTCGAGCTGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2440 CCTATCGTCTCGCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2441 CCTCAACAGCCTGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2442 CCTCAACAGCTGTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2443 CCTCAACCAAGCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2444 CCTCAACCATGACGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2445 CCTCAACGTGGAGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2446 CCTCAACTCGAGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2447 CCTCAACTCGGAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2448 CCTCAACTCGTTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2449 CCTCAACTCTCAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2450 CCTCACACATGTGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2451 CCTCACAGTCCTATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2452 CCTCACATCCTCGATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2453 CCTCAGTAGGACAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2454 CCTCAGTCATAGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2455 CCTCAGTCATCCTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2456 CCTCAGTGTCAAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2457 CCTCAGTGTCCTTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2458 CCTCAGTGTCTCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2459 CCTCAGTTCGACGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2460 CCTCAGTTCTGTAACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2461 CCTCATGAGCCATCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2462 CCTCATGCAGCACACC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2463 CCTCATGCAGGTAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2464 CCTCATGGTAGCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2465 CCTCATGGTAGCGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2466 CCTCATGGTCTAACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2467 CCTCATGGTTCTTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2468 CCTCCAAAGAGGATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2469 CCTCCAAAGTATGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2470 CCTCCAACAGATCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2471 CCTCCAACATGACTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2472 CCTCCAAGTGCGGATA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2473 CCTCCAAGTTTACCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2474 CCTCCTCAGAGAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2475 CCTCCTCAGGAATCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2476 CCTCCTCAGGGCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2477 CCTCCTCAGTCGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2478 CCTCCTCCACCTATCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2479 CCTCCTCGTCATGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2480 CCTCCTCGTGACTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2481 CCTCCTCGTGATCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2482 CCTCCTCTCCGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2483 CCTCCTCTCCTCATAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2484 CCTCCTCTCGCAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2485 CCTCCTCTCTCCCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2486 CCTCTAGAGGTAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2487 CCTCTAGCATATCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2488 CCTCTAGGTACGCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2489 CCTCTAGGTCGTGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2490 CCTCTAGGTGGATACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2491 CCTCTAGTCTCTTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2492 CCTCTCCCAGGATCTT SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2493 CCTCTCCCATTCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2494 CCTCTCCGTCATCGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2495 CCTCTCCTCCTTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2496 CCTCTCCTCGCGGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2497 CCTCTCCTCTAGCATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2498 CCTGCATAGCGATTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2499 CCTGCATAGGAGAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2500 CCTGCATCAGTGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2501 CCTGCATTCCGGACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2502 CCTGTTGAGCAGCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2503 CCTGTTGAGCGCATCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2504 CCTGTTGCAAATGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2505 CCTGTTGCAAGCCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2506 CCTGTTGCAGAGTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2507 CCTGTTGCAGTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2508 CCTGTTGCAGTGTATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2509 CCTGTTGGTAAGTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2510 CCTGTTGTCCGTATAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2511 CCTTCAGCACCCTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2512 CCTTCAGGTACACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2513 CCTTCAGGTCAAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2514 CCTTCAGGTGACGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2515 CCTTCAGGTTAAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2516 CCTTCAGTCGAAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2517 CCTTCAGTCGAGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2518 CCTTGTGAGGTCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2519 CCTTGTGCAACCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2520 CCTTGTGCAGGTTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2521 CCTTGTGGTCGTTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2522 CCTTGTGGTGTGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2523 CCTTGTGGTGTTATCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2524 CCTTGTGTCAGCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2525 CCTTGTGTCCCATGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2526 CCTTGTGTCGACATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2527 CCTTGTGTCTCATTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2528 CCTTGTGTCTGCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2529 CCTTTGGCAAACCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2530 CCTTTGGCACGGAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2531 CCTTTGGCATCATTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2532 CCTTTGGGTGCGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2533 CCTTTGGGTGCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2534 CCTTTGGTCAAAGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2535 CCTTTGGTCACGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2536 CCTTTGGTCCGATCGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2537 CGAAGGAAGACTCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2538 CGAAGGAAGGCTGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2539 CGAAGGAAGTCCGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2540 CGAAGGACATCGGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2541 CGAAGTTAGAGCATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2542 CGAAGTTAGTTGCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2543 CGAAGTTCAAGTCATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2544 CGAAGTTCACCCTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2545 CGAAGTTCATAGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2546 CGAAGTTGTAGCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2547 CGAAGTTTCAGAACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2548 CGAAGTTTCCTGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2549 CGAAGTTTCTGCCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2550 CGAAGTTTCTGCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2551 CGACAGCAGACCCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2552 CGACAGCAGAGTCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2553 CGACAGCCAATTCACG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2554 CGACAGCCAATTGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2555 CGACAGCCACAAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2556 CGACAGCCATCACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2557 CGACAGCTCGCATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2558 CGAGAAGAGGTATCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2559 CGAGAAGAGTCATGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2560 CGAGAAGCAACTGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2561 CGAGAAGCATGCACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2562 CGAGAAGGTACTGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2563 CGAGAAGGTTAGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2564 CGAGAAGGTTCTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2565 CGAGAAGGTTGCTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2566 CGAGAAGGTTTGTTCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2567 CGAGAAGTCCGCAACG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2568 CGAGGAAAGAGCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2569 CGAGGAAAGGCCACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2570 CGAGGAACAGGTTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2571 CGAGGAACATAGAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2572 CGAGGAACATCCCACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2573 CGAGGAACATTGCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2574 CGAGGAAGTGGCCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2575 CGAGGAAGTTCTTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2576 CGAGGAATCACCCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2577 CGAGGAATCCCGTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2578 CGAGGAATCCGTTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2579 CGAGGAATCTTACGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2580 CGAGGCTAGAAGCCAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2581 CGAGGCTAGTATGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2582 CGAGGCTAGTCAGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2583 CGAGGCTGTTTACGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2584 CGAGGCTGTTTCGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2585 CGAGGCTTCTAGTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2586 CGAGGCTTCTTTCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2587 CGAGTGCAGGATACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2588 CGAGTGCCACGCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2589 CGAGTGCCATAGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2590 CGAGTGCCATCGAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2591 CGAGTGCTCGCCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2592 CGAGTTAAGATGAATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2593 CGAGTTAAGGTACCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2594 CGAGTTAAGTAAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2595 CGAGTTAAGTCACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2596 CGAGTTAGTTCTCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2597 CGAGTTATCACCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2598 CGAGTTATCGTTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2599 CGATCGGAGCGACTTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2600 CGATCGGAGTCTAACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2601 CGATCGGGTAGAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2602 CGATCGGGTGTGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2603 CGATGCGAGACCTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2604 CGATGCGAGGACTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2605 CGATGCGAGGAGTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2606 CGATGCGAGTGCGACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2607 CGATGCGCAAGACAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2608 CGATGCGCAATCAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2609 CGATGCGCACAGTATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2610 CGATGCGCACTGCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2611 CGATGCGTCAAGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2612 CGATGCGTCGCTTGCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2613 CGATGGCAGAGCAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2614 CGATGGCAGGTAATCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2615 CGATGGCCACAAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2616 CGATGGCTCAATCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2617 CGCAGGTAGCCAAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2618 CGCAGGTAGTCGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2619 CGCAGGTAGTGTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2620 CGCAGGTCATACCATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2621 CGCAGGTCATAGATGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2622 CGCAGGTGTACATTGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2623 CGCAGGTGTACCTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2624 CGCAGGTGTTCCACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2625 CGCAGGTTCAACCTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2626 CGCAGGTTCCGAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2627 CGCAGGTTCCTAGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2628 CGCAGGTTCGTTAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2629 CGCAGGTTCTAAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2630 CGCATAAAGCACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2631 CGCATAACATCTTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2632 CGCATAATCTGTTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2633 CGCATGGAGCCTTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2634 CGCATGGAGGCACCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2635 CGCATGGCAAATGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2636 CGCATGGCAGTCGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2637 CGCATGGCAGTTGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2638 CGCATGGCATAGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2639 CGCATGGCATCAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2640 CGCATGGGTACGAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2641 CGCATGGGTCCCTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2642 CGCATGGTCACCTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2643 CGCATGGTCTCTGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2644 CGCCAGAGTGTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2645 CGCCAGAGTTGGCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2646 CGCCATTCACCAACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2647 CGCCATTCAGCGTTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2648 CGCCATTTCCGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2649 CGCCATTTCCTATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2650 CGCCATTTCTCCCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2651 CGCCATTTCTCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2652 CGCCATTTCTGGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2653 CGCGTGAAGGGAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2654 CGCGTGAAGTTGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2655 CGCGTGACAAGCCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2656 CGCGTGACAAGGCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2657 CGCGTGACATACCATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2658 CGCGTGACATCTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2659 CGGAACCAGGCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2660 CGGAACCCAAAGGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2661 CGGAACCCAACTGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2662 CGGAACCCAAGTGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2663 CGGAACCCACGGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2664 CGGAACCCAGGGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2665 CGGAACCTCTAAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2666 CGGAATTAGAACGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2667 CGGAATTAGAAGTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2668 CGGAATTAGCAGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2669 CGGAATTAGCTTGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2670 CGGAATTGTACTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2671 CGGAATTTCGGAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2672 CGGAATTTCGTCGACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2673 CGGACACAGAATTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2674 CGGACACAGCGATGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2675 CGGACACAGGAATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2676 CGGACACAGGACTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2677 CGGACACCACTCTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2678 CGGACACCACTGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2679 CGGACACCAGCTACCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2680 CGGACACCAGGACTTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2681 CGGACACGTAGTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2682 CGGACACGTTGCTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2683 CGGACACTCACGGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2684 CGGACACTCCGATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2685 CGGAGAAAGCAAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2686 CGGAGAAAGGTCATCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2687 CGGAGAAAGTACGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2688 CGGAGAACATAGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2689 CGGAGAAGTCCCACGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2690 CGGAGAAGTGAGATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2691 CGGAGAAGTGCACGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2692 CGGAGAATCAAAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2693 CGGAGAATCCAACCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2694 CGGAGAATCGCACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2695 CGGCAGTAGAGGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2696 CGGCAGTAGTAAGACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2697 CGGCAGTCAGATTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2698 CGGCAGTGTCTGTGAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2699 CGGGACTAGTGCGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2700 CGGGACTCAGAACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2701 CGGGACTCAGCGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2702 CGGGACTGTGTCTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2703 CGGGACTGTGTGGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2704 CGGGACTGTTGGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2705 CGGGACTTCCCTTGTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2706 CGGGCATAGCCAAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2707 CGGGCATAGTATGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2708 CGGGCATCAACCCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2709 CGGGCATCAAGAAATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2710 CGGGCATCAGGTGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2711 CGGGCATGTACTCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2712 CGGGCATGTCTACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2713 CGGGCATTCCAGTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2714 CGGGCATTCGCAATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2715 CGGGCATTCTAGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2716 CGGGTCAAGGTGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2717 CGGGTCACAAATCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2718 CGGGTCACACATGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2719 CGGGTCACAGAGAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2720 CGGGTCAGTTGGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2721 CGGGTCATCAGAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2722 CGGGTGTAGTTTCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2723 CGGGTGTGTCAACACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2724 CGGGTGTTCACTTATC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2725 CGGGTGTTCAGAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2726 CGGGTGTTCCCGTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2727 CGGGTGTTCGTTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2728 CGGGTGTTCGTTTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2729 CGGTCAGAGGTCCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2730 CGGTCAGAGTAAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2731 CGGTCAGAGTCATAGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2732 CGGTCAGCAGACATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2733 CGGTCAGGTAAGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2734 CGGTCAGTCAAGGACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2735 CGGTCAGTCATGCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2736 CGGTCAGTCCGTGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2737 CGTAAGTAGGGTGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2738 CGTAAGTCAATAGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2739 CGTAAGTCAGGAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2740 CGTAAGTCAGTAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2741 CGTAAGTCATCGCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2742 CGTAAGTGTACTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2743 CGTAAGTGTATCTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2744 CGTAAGTGTCTAGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2745 CGTAAGTTCCGTATAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2746 CGTAAGTTCGAAACAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2747 CGTAATGAGCCTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2748 CGTAATGCACGGTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2749 CGTAATGCAGAAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2750 CGTAATGGTCGTTGCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2751 CGTAATGGTTGGGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2752 CGTAATGTCCTGGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2753 CGTAATGTCTCTGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2754 CGTAGTAAGTGGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2755 CGTAGTACACAACCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2756 CGTAGTACACATAACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2757 CGTAGTACATGCAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2758 CGTAGTAGTTGTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2759 CGTAGTATCCTCTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2760 CGTCAAAAGGCTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2761 CGTCAAAAGTGCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2762 CGTCAAAAGTGGAATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2763 CGTCAAAAGTTGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2764 CGTCAAACAATCGCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2765 CGTCAAACACGCCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2766 CGTCAAACAGTCGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2767 CGTCAAAGTGTTGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2768 CGTCCATAGCACCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2769 CGTCCATAGCTAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2770 CGTCCATAGGCTGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2771 CGTCCATCACAGTATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2772 CGTCCATCAGCAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2773 CGTCCATCAGGGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2774 CGTCCATCATACATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2775 CGTCCATGTGTCTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2776 CGTCCATGTTATAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2777 CGTCCATGTTTCCATT SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2778 CGTCCATTCAGAACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2779 CGTCCATTCCGTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2780 CGTCCATTCGATTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2781 CGTCCATTCTCCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2782 CGTGAATAGAATTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2783 CGTGAATCAAATGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2784 CGTGAATTCTCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2785 CGTGATAAGCGTTAGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2786 CGTGATACAGATACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2787 CGTGATACAGTCAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2788 CGTGATACATGAGATA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2789 CGTGATATCGCTTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2790 CGTGATATCTATGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2791 CGTGCTTAGGCGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2792 CGTGCTTCATAACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2793 CGTGCTTCATTAAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2794 CGTGCTTGTCCTGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2795 CGTGCTTGTTGCGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2796 CGTGCTTGTTGGTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2797 CGTGCTTTCTTCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2798 CGTGTCTAGCGATGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2799 CGTTAGAAGATCCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2800 CGTTAGAAGCACTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2801 CGTTAGAAGCTGGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2802 CGTTAGACAGCACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2803 CGTTAGACATAATGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2804 CGTTAGAGTCCGTACG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2805 CGTTAGAGTCTTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2806 CGTTAGATCGCAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2807 CGTTAGATCTTCGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2808 CGTTCTGAGCTAGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2809 CGTTCTGAGGCACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2810 CGTTCTGGTCCTTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2811 CGTTCTGGTCGATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2812 CGTTCTGGTGCCTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2813 CGTTCTGGTTGCTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2814 CGTTCTGTCCAAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2815 CGTTCTGTCGACCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2816 CGTTCTGTCGACGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2817 CGTTGGGAGAAACCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2818 CGTTGGGAGGAACTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2819 CGTTGGGAGTTCCGGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2820 CGTTGGGCAACAGAGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2821 CGTTGGGCAAGGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2822 CGTTGGGCAATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2823 CGTTGGGCACTGGATT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2824 CGTTGGGGTGTGTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2825 CGTTGGGGTTGCATGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2826 CTAACCCAGACGAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2827 CTAACCCCAACTGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2828 CTAACCCCACCTTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2829 CTAACCCCACGCTATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2830 CTAACCCCATATAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2831 CTAACCCGTCCGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2832 CTAACCCTCATTATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2833 CTAACCCTCCACGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2834 CTAACTTAGATTTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2835 CTAACTTGTTAAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2836 CTAACTTTCAGCATTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2837 CTAACTTTCCGTTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2838 CTAACTTTCTAGCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2839 CTAAGTGAGTAAGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2840 CTAAGTGCAGATACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2841 CTAAGTGCAGTATTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2842 CTAAGTGTCAGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2843 CTAAGTGTCAGCTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2844 CTAAGTGTCAGTCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2845 CTAAGTGTCATTTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2846 CTACAGAAGCATCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2847 CTACAGAAGGATTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2848 CTACAGACACGGATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2849 CTACAGACACTAGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2850 CTACAGACAGAGGGTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2851 CTACAGACAGCTACTA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2852 CTACAGATCTACACAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2853 CTACATTAGCTCGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2854 CTACATTAGGTAAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2855 CTACATTCATACAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2856 CTACATTGTACCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2857 CTACATTGTCTGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2858 CTACATTGTTAGCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2859 CTACATTTCACTGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2860 CTACCCAAGGATATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2861 CTACCCACAAACCATC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2862 CTACCCACACTACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2863 CTACCCAGTAGTCACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2864 CTACCCATCGGATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2865 CTACCTGCACATGACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2866 CTACCTGCAGACACAG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2867 CTACCTGCAGTAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2868 CTACCTGGTAGAATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2869 CTACCTGGTCTGTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2870 CTACCTGTCTTACCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2871 CTACGGGAGCACCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2872 CTACGGGAGCGTGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2873 CTACGGGAGTAACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2874 CTACGGGCACCCAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2875 CTACGGGCAGCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2876 CTACGGGGTAAGGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2877 CTACGGGGTACCTATG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2878 CTACGGGGTCAGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2879 CTACGGGGTGTGTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2880 CTACGGGTCACTGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2881 CTACGGGTCTAGCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2882 CTACTATAGAAACTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2883 CTACTATAGCTAAACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2884 CTACTATAGGGTCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2885 CTACTATCAACTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2886 CTACTATTCCATACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2887 CTAGACAAGAGCCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2888 CTAGACAAGCAGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2889 CTAGACATCCAGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2890 CTAGGTAAGACCATGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2891 CTAGGTAAGACCATTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2892 CTAGGTAAGCAGCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2893 CTAGGTAAGCGCCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2894 CTAGGTAAGCGGACAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2895 CTAGGTACAGTTTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2896 CTAGGTAGTCCTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2897 CTATAGGAGACATACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2898 CTATAGGAGGGATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2899 CTATAGGCAAACTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2900 CTATAGGCATCGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2901 CTATAGGGTTGGCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2902 CTATAGGTCCGATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2903 CTATCCGGTAGCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2904 CTATCCGGTCCGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2905 CTATCCGTCACTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2906 CTATCCGTCGCAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2907 CTATCTAAGATTAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2908 CTATCTAAGGTAGACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2909 CTATCTAAGTTACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2910 CTATCTACAATTGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2911 CTATCTACATGAGATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2912 CTATCTAGTCGATTCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2913 CTATCTAGTGAGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2914 CTATCTAGTTACACAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2915 CTCAACCAGAGGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2916 CTCAACCCAAACTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2917 CTCAACCCACCCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2918 CTCAACCCATGCAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2919 CTCAACCCATGTGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2920 CTCAACCGTCTGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2921 CTCAACCTCCCGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2922 CTCAACCTCTATCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2923 CTCAAGAAGAAATTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2924 CTCAAGAAGCGACTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2925 CTCAAGAAGCGGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2926 CTCAAGAAGCTCTATG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2927 CTCAAGAAGTGCTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2928 CTCAAGAAGTGGCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2929 CTCAAGACAATCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2930 CTCAAGACATCGAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2931 CTCAAGACATCTGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2932 CTCAATTGTGAGTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2933 CTCAATTTCCGCAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2934 CTCAATTTCGTAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2935 CTCAATTTCTGAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2936 CTCAATTTCTTCTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2937 CTCACTGAGAAGCGGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2938 CTCACTGAGCGAGGAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2939 CTCACTGAGGCAGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2940 CTCACTGAGGTCCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2941 CTCACTGCACACGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2942 CTCACTGCAGGTGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2943 CTCACTGCAGTGGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2944 CTCACTGGTTGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2945 CTCACTGTCAAGAATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2946 CTCAGAAAGCACTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2947 CTCAGAAGTCGTGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2948 CTCAGAAGTTACGATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2949 CTCAGAATCCGATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2950 CTCAGAATCGCACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2951 CTCAGAATCTAGCATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2952 CTCAGGGAGAGGTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2953 CTCAGGGAGCCGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2954 CTCAGGGAGGGCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2955 CTCAGGGCATCTAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2956 CTCAGGGTCCTTATGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2957 CTCAGGGTCGAATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2958 CTCAGGGTCTCCCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2959 CTCAGTCAGAAGCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2960 CTCAGTCAGAGAGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2961 CTCAGTCCATACCACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2962 CTCAGTCCATCCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2963 CTCAGTCTCAGACAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2964 CTCAGTCTCTAGTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2965 CTCATCGCAGCCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2966 CTCATCGGTAGTGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2967 CTCATCGGTATCGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2968 CTCATCGGTGTCTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2969 CTCATCGGTTACGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2970 CTCATCGGTTTGGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2971 CTCATCGTCCGTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2972 CTCATGCAGCCGAATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2973 CTCATGCCACGCTTAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2974 CTCATGCCATAGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2975 CTCATGCGTTGTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2976 CTCATGCTCCTGATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2977 CTCATGCTCGTTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2978 CTCATTAAGGTTGACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2979 CTCATTACAAGAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2980 CTCATTAGTTTAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2981 CTCATTATCGCGGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2982 CTCATTATCTGCGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2983 CTCCAACAGCCACAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2984 CTCCAACAGGAAAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2985 CTCCAACAGGAACTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2986 CTCCAACCACAATCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2987 CTCCAACCAGCGTACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2988 CTCCAACCAGTCCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2989 CTCCAACGTACAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2990 CTCCAACGTCGTTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2991 CTCCAACGTGAGTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2992 CTCCAACGTGCAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2993 CTCCAACGTGGAGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2994 CTCCAACGTGGCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2995 CTCCACAAGATCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2996 CTCCACACAAAGCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2997 CTCCACACAACTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2998 CTCCACACAGAGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
2999 CTCCACAGTATCACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3000 CTCCACAGTGAAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3001 CTCCACAGTGGAGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3002 CTCCACAGTGGTTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3003 CTCCACAGTTGTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3004 CTCCACATCCAGTACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3005 CTCCACATCCCGTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3006 CTCCACATCCTAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3007 CTCCACATCGCCAATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3008 CTCCACATCTCTCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3009 CTCCACATCTTGCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3010 CTCCATGCAGCTACAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3011 CTCCATGCAGCTGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3012 CTCCATGGTAAGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3013 CTCCATGTCACTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3014 CTCCCAAAGAGGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3015 CTCCCAAAGCGCTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3016 CTCCCAAAGGTCTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3017 CTCCCAACAACACACT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3018 CTCCCAACACTAGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3019 CTCCCAACATTCCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3020 CTCCCAAGTACCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3021 CTCCCAAGTCGTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3022 CTCCCAAGTTTACCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3023 CTCCCAATCACCATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3024 CTCCCAATCAGCTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3025 CTCCCAATCTTCCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3026 CTCCCTCCAACACGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3027 CTCCCTCCACAGAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3028 CTCCCTCCACTGTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3029 CTCCCTCCAGTTAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3030 CTCCCTCCATTGCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3031 CTCCCTCGTCTGTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3032 CTCCCTCGTGTTAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3033 CTCCCTCTCAAAGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3034 CTCCCTCTCACTGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3035 CTCCCTCTCGACGATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3036 CTCCGATAGACTTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3037 CTCCGATAGCCTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3038 CTCCGATCAGCACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3039 CTCCGATTCATCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3040 CTCCGATTCGTCTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3041 CTCCTCCCAAATACGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3042 CTCCTCCCAACTGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3043 CTCCTCCCACGATAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3044 CTCCTCCCATTGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3045 CTCCTCCGTCCTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3046 CTCCTCCTCGGACGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3047 CTCCTTTAGCGTCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3048 CTCCTTTCAGGCGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3049 CTCGAGGAGGACGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3050 CTCGAGGCACCAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3051 CTCGAGGCACGTACTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3052 CTCGAGGGTACAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3053 CTCGAGGGTCTTGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3054 CTCGAGGGTGACGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3055 CTCGAGGGTTACCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3056 CTCGAGGGTTCGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3057 CTCGAGGTCCATTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3058 CTCTCAGAGCCTTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3059 CTCTCAGAGTCGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3060 CTCTCAGAGTGTGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3061 CTCTCAGAGTGTTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3062 CTCTCAGCAAGTCCCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3063 CTCTCAGCAGCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3064 CTCTCAGGTACTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3065 CTCTCAGGTAGTTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3066 CTCTCAGGTTTGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3067 CTCTCGAAGACGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3068 CTCTCGACACTAGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3069 CTCTCGACAGGTTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3070 CTCTCGAGTAGGCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3071 CTCTCGAGTCTGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3072 CTCTCGATCAACGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3073 CTCTGGTAGTGAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3074 CTCTGGTAGTTCGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3075 CTCTGGTGTGTGCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3076 CTCTGGTTCACCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3077 CTCTGGTTCGCCGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3078 CTGAATGCACCATATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3079 CTGAATGCATGAATAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3080 CTGAATGGTCTGTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3081 CTGAATGTCACTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3082 CTGAATGTCGGCCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3083 CTGAGCGAGCACCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3084 CTGAGCGCAAGCAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3085 CTGAGCGCACTTGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3086 CTGAGCGCATCGTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3087 CTGAGCGCATTGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3088 CTGAGCGCATTGACAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3089 CTGAGCGGTACACGCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3090 CTGAGCGGTTCGCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3091 CTGAGGCAGAGCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3092 CTGAGGCAGGTACCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3093 CTGAGGCAGTCTCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3094 CTGAGGCGTACGTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3095 CTGAGGCTCAACTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3096 CTGAGGCTCCACCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3097 CTGAGGCTCGCTGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3098 CTGATCCAGATGGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3099 CTGATCCAGCTCGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3100 CTGATCCAGCTTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3101 CTGATCCCAATAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3102 CTGATCCCAATCCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3103 CTGATCCCAGGTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3104 CTGCAGGAGCTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3105 CTGCAGGGTATAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3106 CTGCAGGTCGACCCAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3107 CTGCATCAGAGATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3108 CTGCATCAGTTCATCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3109 CTGCATCCAAGTGACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3110 CTGCATCGTCCAGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3111 CTGCATCTCATCACCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3112 CTGCATCTCCAGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3113 CTGCATCTCGACGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3114 CTGCCATAGTATTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3115 CTGCCATCAGGGTCTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3116 CTGCCATGTAGCCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3117 CTGCCATGTTGCAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3118 CTGCCATTCAAGGACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3119 CTGCCATTCCCTTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3120 CTGCCATTCGGATAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3121 CTGCCTAAGCCATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3122 CTGCCTAGTTCTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3123 CTGCCTATCGTCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3124 CTGCCTATCTATCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3125 CTGCGAGAGTAGAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3126 CTGCGAGCAGAGGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3127 CTGCGAGGTCGTTATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3128 CTGCGAGTCAGCCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3129 CTGCGAGTCCAAGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3130 CTGCGAGTCCGGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3131 CTGCTCAAGACGCCCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3132 CTGCTCACAGAGTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3133 CTGCTCAGTCATCGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3134 CTGCTCAGTGAGCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3135 CTGCTCATCGCATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3136 CTGCTCATCGCTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3137 CTGCTCATCTGGCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3138 CTGGACGAGGATTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3139 CTGGACGCAGCCTATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3140 CTGGACGCATAGATGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3141 CTGGACGGTGTTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3142 CTGGACGTCAACACGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3143 CTGGACGTCGAGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3144 CTGGCAGCAAAGAGTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3145 CTGGCAGCAAGTGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3146 CTGGCAGCAGAAATCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3147 CTGGCAGCATCATTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3148 CTGGCAGGTCACTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3149 CTGGCAGGTCTACAAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3150 CTGGCAGGTCTTCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3151 CTGGCAGGTTGGTACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3152 CTGGCAGTCATGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3153 CTGGCAGTCGCTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3154 CTGGTCTAGTCTCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3155 CTGGTCTCAGGTTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3156 CTGGTCTCATCATCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3157 CTGGTCTTCAGCGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3158 CTGGTCTTCAGCTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3159 CTGGTCTTCGTTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3160 CTGGTCTTCTCCGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3161 CTGTACCAGAGCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3162 CTGTACCAGAGGACTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3163 CTGTACCAGCCACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3164 CTGTACCCAAGTGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3165 CTGTACCCACATTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3166 CTGTACCCAGAGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3167 CTGTACCCAGTAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3168 CTGTACCCAGTAGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3169 CTGTACCGTAACCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3170 CTGTACCGTACTGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3171 CTGTACCGTAGACACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3172 CTGTACCGTATGCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3173 CTGTACCGTGTTTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3174 CTGTACCTCAATGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3175 CTGTAGAAGGATTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3176 CTGTAGAGTATTCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3177 CTGTAGAGTCATTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3178 CTGTAGATCGTAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3179 CTGTATTAGCAAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3180 CTGTATTAGTTTGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3181 CTGTATTCACTGGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3182 CTGTATTCATAGCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3183 CTGTATTGTTGTTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3184 CTGTATTTCAAGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3185 CTGTATTTCCGTGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3186 CTGTCGTAGCCTTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3187 CTGTCGTAGGAAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3188 CTGTCGTAGGTAAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3189 CTGTCGTCAGGGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3190 CTGTCGTGTCTCACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3191 CTGTCGTGTTCGCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3192 CTGTCGTTCAATCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3193 CTGTCGTTCGGCATTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3194 CTGTCGTTCTTACGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3195 CTGTGAAAGAGGGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3196 CTGTGAAAGCTAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3197 CTGTGAAAGTTTGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3198 CTGTGAACACGAAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3199 CTGTGAACAGGACATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3200 CTGTGAACAGTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3201 CTGTGAAGTTGTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3202 CTGTGGGAGCTACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3203 CTGTGGGAGCTCTATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3204 CTGTGGGCAAATGATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3205 CTGTGGGTCATTTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3206 CTTACCGAGTGCACTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3207 CTTACCGCAAAGGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3208 CTTACCGCAACACGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3209 CTTACCGCACAAAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3210 CTTACCGCACTTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3211 CTTACCGCATTGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3212 CTTACCGGTACTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3213 CTTACCGGTGGTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3214 CTTACCGTCCAGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3215 CTTACCGTCGAACCAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3216 CTTACCGTCTATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3217 CTTAGGAAGGTAAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3218 CTTAGGACACAGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3219 CTTAGGACATGGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3220 CTTAGGAGTTAGTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3221 CTTAGGATCCCTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3222 CTTAGGATCGTGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3223 CTTCAATAGGAAAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3224 CTTCAATCATGTGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3225 CTTCAATGTAGTTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3226 CTTCAATTCGTCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3227 CTTCCGAAGACGGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3228 CTTCCGAAGGCTTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3229 CTTCCGAAGTTAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3230 CTTCCGAGTACGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3231 CTTCCGAGTGGTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3232 CTTCCGAGTTGAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3233 CTTCCGATCGGACGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3234 CTTCCGATCTACTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3235 CTTCCTTAGCTCGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3236 CTTCCTTAGTGGCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3237 CTTCCTTCACACCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3238 CTTCCTTCATAGGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3239 CTTCCTTCATGCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3240 CTTCCTTGTCCTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3241 CTTCGGTAGACCCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3242 CTTCGGTAGCGAGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3243 CTTCGGTAGCGCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3244 CTTCGGTAGGGCGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3245 CTTCGGTTCACTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3246 CTTCTAAAGCTGTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3247 CTTCTAAAGTTGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3248 CTTCTAACACTAACGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3249 CTTCTAACAGCTACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3250 CTTCTAACAGCTCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3251 CTTCTAACATTCCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3252 CTTCTAAGTTAAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3253 CTTCTCTAGAACTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3254 CTTCTCTAGGTATCTC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3255 CTTCTCTCAACGGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3256 CTTCTCTCAAGCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3257 CTTCTCTCACAGCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3258 CTTCTCTCACAGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3259 CTTCTCTCACATGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3260 CTTCTCTCACGCAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3261 CTTCTCTGTCTTTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3262 CTTGAGAAGCTCCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3263 CTTGAGAAGGCACCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3264 CTTGAGACATCAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3265 CTTGAGAGTATGCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3266 CTTGAGAGTGTAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3267 CTTGATTAGCTAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3268 CTTGATTCAGCCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3269 CTTGATTCAGCTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3270 CTTGATTGTGTTCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3271 CTTGATTGTTCTAACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3272 CTTGATTTCAGGCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3273 CTTTCAAAGCCTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3274 CTTTCAACAAATAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3275 CTTTCAACACTTGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3276 CTTTCAACAGTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3277 CTTTCAAGTACGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3278 CTTTCAATCTCATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3279 CTTTCGGAGAAGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3280 CTTTCGGAGAGAATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3281 CTTTCGGAGAGCCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3282 CTTTCGGAGCCTTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3283 CTTTCGGAGGGCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3284 CTTTCGGAGTCAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3285 CTTTCGGCAACCGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3286 CTTTCGGCACATACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3287 CTTTCGGCAGGCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3288 CTTTCGGCATGGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3289 CTTTCGGTCAGCCTTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3290 GAAACCTCAAAGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3291 GAAACCTGTATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3292 GAAACCTGTCTGTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3293 GAAACCTGTGAACCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3294 GAAATGAAGAAACCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3295 GAAATGAAGGTACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3296 GAAATGAAGGTACTGG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3297 GAAATGAAGTCGAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3298 GAAATGATCAAGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3299 GAACACTAGAACGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3300 GAACACTAGCTTCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3301 GAACACTCACACAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3302 GAACACTCATGACACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3303 GAACACTGTAAGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3304 GAACACTGTAGATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3305 GAACACTGTCCACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3306 GAACACTGTGTCCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3307 GAACACTTCAAGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3308 GAACACTTCCTCTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3309 GAACACTTCTTAGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3310 GAACGTTAGACGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3311 GAACGTTCACGTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3312 GAACGTTGTACTCGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3313 GAACGTTTCCTTGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3314 GAACTGTAGCCAAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3315 GAACTGTGTAAGCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3316 GAAGAATAGAGGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3317 GAAGAATCACGACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3318 GAAGAATCATTGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3319 GAAGAATGTGTAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3320 GAAGCCCAGTACGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3321 GAAGCCCAGTCCCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3322 GAAGCCCCAAAGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3323 GAAGCCCCACAAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3324 GAAGCCCCATTGCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3325 GAAGCCCGTCAACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3326 GAAGCCCTCCGGGACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3327 GAAGCGAAGCAATAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3328 GAAGCGAAGGAATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3329 GAAGCGAAGGCAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3330 GAAGCGACAGTAACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3331 GAAGCGATCGCAACAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3332 GAAGCGATCTAGAACC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3333 GAAGGACAGGCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3334 GAAGGACCAACCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3335 GAAGGACCAAGGAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3336 GAAGGACGTGATTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3337 GAAGGACGTGCATGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3338 GAAGGACGTGGTCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3339 GAAGGACTCACCGACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3340 GAAGGACTCCAGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3341 GAAGGACTCGTTCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3342 GAAGGGTAGAAACTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3343 GAAGTAAAGGCTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3344 GAAGTAACACTGATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3345 GAAGTAACATGTGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3346 GAAGTAATCACTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3347 GAAGTAATCGGACCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3348 GAAGTAATCTCGACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3349 GAATAGAAGTTGCGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3350 GAATAGACATCAGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3351 GAATAGACATGTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3352 GAATAGAGTCCAAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3353 GAATAGAGTGCAAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3354 GAATAGATCAGGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3355 GAATAGATCTGTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3356 GAATCACAGTGCCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3357 GAATCACCAACCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3358 GAATCACGTACTCGCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3359 GAATCACGTCTCACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3360 GAATCACGTTCATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3361 GAATCACTCAATGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3362 GAATCGTAGAGAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3363 GAATCGTAGTCTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3364 GAATCGTGTAAGCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3365 GAATCGTGTCCATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3366 GAATCGTTCCACGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3367 GAATCGTTCTGGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3368 GACACGCAGGACCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3369 GACACGCAGTGAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3370 GACACGCGTAACACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3371 GACACGCGTATGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3372 GACACGCGTTACGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3373 GACACGCTCGCGATCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3374 GACACGCTCTCTCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3375 GACAGCCAGATGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3376 GACAGCCAGCGCCTTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3377 GACAGCCAGTATCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3378 GACAGCCCAATTCACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3379 GACAGCCCACCCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3380 GACAGCCGTGGTCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3381 GACATCACAAGACCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3382 GACATCACATGTGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3383 GACATCAGTCACCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3384 GACATCAGTCAGTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3385 GACATCAGTGCATCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3386 GACATCAGTTCAAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3387 GACATCATCATTCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3388 GACATCATCGGTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3389 GACATCATCTTAGCTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3390 GACCAATCACAAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3391 GACCAATCAGGAGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3392 GACCAATCAGGTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3393 GACCAATGTAGACGTG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3394 GACCAATGTGTATTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3395 GACCAATTCACCTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3396 GACCAATTCGCTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3397 GACCCAGAGTCTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3398 GACCCAGCACCGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3399 GACCCAGCAGTGTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3400 GACCCAGGTCCATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3401 GACCCAGTCTGTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3402 GACCCTTAGTATAACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3403 GACCCTTCAAACTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3404 GACCCTTCAGCAATTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3405 GACCCTTTCAGCCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3406 GACCCTTTCCAGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3407 GACCCTTTCTCCGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3408 GACCGTGAGAAGTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3409 GACCGTGAGACAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3410 GACCGTGAGATGACCG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3411 GACCGTGAGTGCAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3412 GACCGTGCAAGGCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3413 GACCGTGGTATGCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3414 GACCGTGGTGGGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3415 GACCGTGTCCGAAATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3416 GACCGTGTCCGTTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3417 GACCTTCAGGCACTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3418 GACCTTCAGGGAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3419 GACCTTCCACCCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3420 GACCTTCTCGCTATTT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3421 GACCTTCTCTGACGCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3422 GACGCTGAGACGGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3423 GACGCTGAGCTGACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3424 GACGCTGAGGTTCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3425 GACGCTGCACACAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3426 GACGCTGGTAGGATAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3427 GACGCTGGTGGGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3428 GACGCTGTCACCCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3429 GACGCTGTCAGACCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3430 GACGTTACAGTCGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3431 GACGTTACAGTTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3432 GACGTTAGTTCGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3433 GACTATGAGCATGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3434 GACTATGAGGGTTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3435 GACTATGAGTGGATTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3436 GACTATGAGTTTGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3437 GACTATGGTAGCGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3438 GACTATGGTCATATGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3439 GACTATGGTCTTTATC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3440 GACTATGGTGTGACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3441 GACTATGTCAACTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3442 GACTCAACAACCCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3443 GACTCAACACCCTTGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3444 GACTCAACACTTGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3445 GACTCAACATCGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3446 GACTCAAGTCGAAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3447 GACTCAAGTTTCGGCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3448 GACTCAATCGGAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3449 GACTCAATCTATGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3450 GACTCTCCAATACAGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3451 GACTCTCCACGCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3452 GACTCTCCAGCGTTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3453 GACTCTCCAGCTGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3454 GACTCTCTCAGCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3455 GACTCTCTCCGAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3456 GACTCTCTCCTGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3457 GACTCTCTCGCATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3458 GACTCTCTCTGTGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3459 GACTGATAGAACCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3460 GACTGATAGCGCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3461 GACTGATAGTGATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3462 GACTGATCAGCTGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3463 GACTGATTCATCACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3464 GACTGATTCGTCTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3465 GACTTCCCAGGTCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3466 GACTTCCGTTACGATC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3467 GACTTCCGTTCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3468 GACTTCCTCAAGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3469 GAGAAATAGCCTCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3470 GAGAAATAGCGGGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3471 GAGAAATCAACATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3472 GAGAAATCAATTCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3473 GAGAAATGTTTCGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3474 GAGAAATTCATTATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3475 GAGAAATTCTCCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3476 GAGAAATTCTTGCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3477 GAGACCCAGGTAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3478 GAGACCCAGTGCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3479 GAGACCCCAAAGGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3480 GAGACCCGTATGTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3481 GAGACCCGTCGCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3482 GAGACCCGTTTGGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3483 GAGACCCTCTAAACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3484 GAGACTTAGTCGGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3485 GAGACTTCACCCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3486 GAGACTTCAGGTTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3487 GAGACTTCAGTTAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3488 GAGACTTCATCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3489 GAGACTTTCACCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3490 GAGACTTTCATTCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3491 GAGACTTTCTGCATAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3492 GAGAGGTAGAGCCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3493 GAGAGGTAGAGTGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3494 GAGAGGTAGATCCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3495 GAGAGGTAGGCATTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3496 GAGAGGTCAAAGTATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3497 GAGAGGTCAACACAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3498 GAGAGGTCAAGAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3499 GAGAGGTCAGCGACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3500 GAGAGGTCATCTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3501 GAGAGGTCATTGCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3502 GAGATGGAGCAGCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3503 GAGATGGAGCGATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3504 GAGATGGAGCGTGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3505 GAGATGGAGCTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3506 GAGATGGAGGTTATAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3507 GAGATGGCAACAAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3508 GAGATGGCAACCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3509 GAGATGGCACGCACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3510 GAGATGGGTCCTCAGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3511 GAGATGGGTTCTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3512 GAGATGGTCGTGGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3513 GAGCCTGAGCGGTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3514 GAGCCTGAGTAAGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3515 GAGCCTGCAATAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3516 GAGCCTGCATGTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3517 GAGCCTGGTCGTAATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3518 GAGCCTGGTGTACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3519 GAGCCTGTCAGCCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3520 GAGCCTGTCATCCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3521 GAGCCTGTCGCTGATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3522 GAGCTGCAGTACAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3523 GAGCTGCCAGAGAGGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3524 GAGCTGCGTCTTGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3525 GAGCTGCGTGTTACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3526 GAGGCAAAGTCTTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3527 GAGGCAACATCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3528 GAGGCAAGTGCCGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3529 GAGGCAAGTGGCATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3530 GAGGCAATCTACAGGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3531 GAGGCCTAGCTGGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3532 GAGGCCTAGCTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3533 GAGGCCTAGGGCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3534 GAGGCCTCATCATCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3535 GAGGCCTGTCCCACGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3536 GAGGCCTTCCATCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3537 GAGGCCTTCTCTGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3538 GAGGCCTTCTTCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3539 GAGGGATAGCATAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3540 GAGGGATAGCTCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3541 GAGGGATAGCTTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3542 GAGGGATAGTAGTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3543 GAGGGATCAGGCTATT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3544 GAGGGATCATGTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3545 GAGGGATGTACGCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3546 GAGGGATGTGCATACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3547 GAGGGATGTGTCCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3548 GAGGGATGTTTACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3549 GAGGGATTCAAACTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3550 GAGGGATTCAAGATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3551 GAGGGATTCATCGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3552 GAGGGTACAATGACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3553 GAGGGTACAGGATGAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3554 GAGGGTAGTACACGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3555 GAGGGTAGTTGACGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3556 GAGGGTATCATACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3557 GAGGGTATCGAGAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3558 GAGTCATAGACGTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3559 GAGTCATAGGGCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3560 GAGTCATAGGTCATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3561 GAGTCATAGTTCGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3562 GAGTCATGTACCATAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3563 GAGTCATGTACGTGAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3564 GAGTCATTCCGCAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3565 GAGTCATTCGGCTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3566 GAGTCATTCTGGGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3567 GAGTCTAAGACATACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3568 GAGTCTAAGACTGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3569 GAGTCTAAGATTGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3570 GAGTCTAAGGGCAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3571 GAGTCTACAGCAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3572 GAGTCTACATCGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3573 GAGTCTACATTCAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3574 GAGTCTAGTCTACAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3575 GAGTCTAGTGAGATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3576 GAGTCTATCAATGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3577 GAGTCTATCCTCCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3578 GAGTCTATCGGCTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3579 GAGTCTATCTTGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3580 GAGTGAGAGACCAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3581 GAGTGAGAGCACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3582 GAGTGAGAGCATCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3583 GAGTGAGCAGTCGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3584 GAGTGAGCATGGGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3585 GAGTGAGGTAGTTACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3586 GAGTGAGGTTGCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3587 GAGTGAGTCACGGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3588 GAGTGAGTCCCGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3589 GAGTGTTAGACCGTTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3590 GAGTGTTAGGTGGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3591 GAGTGTTAGTCACACT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3592 GAGTGTTCAACTGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3593 GAGTGTTCAATTCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3594 GAGTGTTGTACTAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3595 GAGTGTTGTAGTTACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3596 GAGTGTTGTGGACCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3597 GAGTGTTGTTAGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3598 GAGTGTTTCACCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3599 GAGTGTTTCACTTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3600 GAGTGTTTCAGACCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3601 GAGTTACAGCAGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3602 GAGTTACGTATCAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3603 GAGTTACTCTGGGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3604 GAGTTGTAGCGTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3605 GAGTTGTCACTGTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3606 GAGTTGTCATCTGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3607 GAGTTGTGTGATTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3608 GAGTTGTTCAGGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3609 GAGTTGTTCATATGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3610 GAGTTGTTCGTGGGTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3611 GAGTTTGAGGCCCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3612 GAGTTTGAGTAGCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3613 GAGTTTGCAAGAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3614 GAGTTTGCACACCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3615 GAGTTTGCACAGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3616 GAGTTTGCAGCCTACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3617 GAGTTTGCAGTAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3618 GAGTTTGGTGGACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3619 GAGTTTGTCGTGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3620 GAGTTTGTCGTTGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3621 GATAGAACATCGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3622 GATAGAACATGACTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3623 GATAGAAGTGATTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3624 GATAGCTAGAAACCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3625 GATAGCTCAAAGTATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3626 GATAGCTCAACATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3627 GATAGCTTCGATGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3628 GATCACAAGGCTAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3629 GATCACACAACAGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3630 GATCACACACCTCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3631 GATCACAGTACGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3632 GATCACAGTAGACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3633 GATCACAGTATGCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3634 GATCACAGTGTAAATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3635 GATCAGTAGATACATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3636 GATCAGTGTAGGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3637 GATCAGTGTTTCGGCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3638 GATCATGCAAGTATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3639 GATCCCTAGCTCCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3640 GATCCCTAGTTACGTC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3641 GATCCCTCAATCAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3642 GATCCCTCAATTCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3643 GATCCCTCACATGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3644 GATCCCTCATTGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3645 GATCCCTGTAACTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3646 GATCCCTTCCCGAATA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3647 GATCGTAAGCCGGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3648 GATCGTAAGGCAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3649 GATCGTAAGGCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3650 GATCGTACAACGATTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3651 GATCGTATCCGGTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3652 GATCGTATCTTCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3653 GATCGTATCTTTACAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3654 GATGACTAGCGAAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3655 GATGACTAGCGCCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3656 GATGACTCATCTAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3657 GATGACTCATTGACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3658 GATGACTGTGTTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3659 GATGACTTCCTCATAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3660 GATGAGGAGCATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3661 GATGAGGCAATTGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3662 GATGAGGCAGCAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3663 GATGATCCAGCAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3664 GATGATCCATTGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3665 GATGATCGTTACCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3666 GATGATCTCTCTGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3667 GATGATCTCTTCGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3668 GATGCTAAGGGCGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3669 GATGCTAAGGTGGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3670 GATGCTAAGTGTACCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3671 GATGCTACATCATTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3672 GATGCTACATGACTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3673 GATGCTAGTCGATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3674 GATGCTAGTGGTTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3675 GATGCTATCCGGTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3676 GATGCTATCGCCTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3677 GATGGAGAGGATGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3678 GATGGAGAGTAATACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3679 GATGGAGAGTTCAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3680 GATGGAGCACAAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3681 GATGGAGGTGTTAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3682 GATGGAGTCCCTGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3683 GATGGAGTCGTCGACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3684 GATGTTGAGCGTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3685 GATGTTGCACTGCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3686 GATGTTGCAGTATTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3687 GATGTTGGTGAAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3688 GATGTTGTCCACGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3689 GATTCGAAGAATCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3690 GATTCGAAGATGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3691 GATTCGACACTCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3692 GATTCGACATAGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3693 GATTCGAGTACTAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3694 GATTCGAGTAGGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3695 GATTCGAGTAGTCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3696 GATTCGATCAAGAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3697 GATTCGATCTGCCTGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3698 GATTCTTAGTGCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3699 GATTCTTGTATTTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3700 GATTCTTGTTAGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3701 GATTCTTTCACCTACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3702 GATTGGTCACCTAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3703 GATTGGTCACTTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3704 GATTGGTCATCGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3705 GATTGGTGTCCATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3706 GATTGGTTCGCCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3707 GATTGGTTCTAACGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3708 GATTTCTAGACCTGGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3709 GATTTCTCAAGAGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3710 GATTTCTCAAGTATCC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3711 GATTTCTGTAGGTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3712 GCAACATAGAAACTCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3713 GCAACATAGGTGCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3714 GCAACATAGTTGCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3715 GCAACATGTATCGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3716 GCAACATGTGGGATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3717 GCAACATTCAAGTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3718 GCAACATTCACGGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3719 GCAACCGAGACACACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3720 GCAACCGCAAACACCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3721 GCAACCGCAGGTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3722 GCAACCGTCGTCAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3723 GCACATACACGACGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3724 GCACATACAGGTTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3725 GCACATACAGTTCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3726 GCACATAGTTTGACAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3727 GCACATATCGCATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3728 GCACGGTAGACCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3729 GCACGGTAGGAAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3730 GCACGGTAGGTGCATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3731 GCACGGTCAAGACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3732 GCACGGTCAAGTGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3733 GCACGGTCACAGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3734 GCACGGTCAGCACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3735 GCACGGTCATGAGATA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3736 GCACGGTGTGCGCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3737 GCACGTGAGAACGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3738 GCACGTGAGAGCCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3739 GCACGTGAGCAAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3740 GCACGTGAGCGATGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3741 GCACGTGCACCTAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3742 GCACGTGGTGCCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3743 GCACGTGTCTTACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3744 GCACTAACAGACGATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3745 GCACTAAGTCACAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3746 GCACTAAGTGTGTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3747 GCACTAAGTTGCAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3748 GCAGCCAAGACCAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3749 GCAGCCAAGCATAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3750 GCAGCCAAGCGTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3751 GCAGCCAGTACGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3752 GCAGCCAGTGATATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3753 GCAGCCAGTTACCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3754 GCAGCTGAGCCTTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3755 GCAGCTGAGGGTATAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3756 GCAGCTGAGTATGATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3757 GCAGCTGCACGCCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3758 GCAGCTGCAGCATCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3759 GCAGCTGGTACTTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3760 GCAGCTGGTGTGAATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3761 GCAGCTGTCAGGCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3762 GCAGCTGTCCATAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3763 GCAGCTGTCGTTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3764 GCAGCTGTCTTCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3765 GCAGGCTAGTCAAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3766 GCAGGCTCAAGCGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3767 GCAGGCTCAGGTTCAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3768 GCAGGCTCATCCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3769 GCAGGCTGTAGCTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3770 GCAGGCTGTAGTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3771 GCAGGCTGTATGATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3772 GCAGGCTGTGGAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3773 GCAGGCTTCCCGTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3774 GCAGGCTTCGAAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3775 GCAGTTAAGGTTGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3776 GCAGTTACACTTGACA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3777 GCAGTTACAGGCATTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3778 GCAGTTAGTCCTTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3779 GCAGTTAGTGCAATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3780 GCAGTTAGTGTCATGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3781 GCAGTTAGTGTCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3782 GCAGTTAGTTTCAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3783 GCAGTTATCGGTGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3784 GCATCGGAGAGTCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3785 GCATCGGGTGGCTTAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3786 GCATCGGGTTCTAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3787 GCATCGGGTTGGGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3788 GCATCTCCAGCTCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3789 GCATCTCCAGGAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3790 GCATCTCGTACCCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3791 GCATCTCGTGCACGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3792 GCATCTCGTGTCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3793 GCATCTCGTTCCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3794 GCATCTCTCTTCGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3795 GCATGATAGGAATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3796 GCATGATCAAAGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3797 GCATGATCAACGGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3798 GCATGATCAAGACCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3799 GCATGATCAGAAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3800 GCATGATCATCCGATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3801 GCATGATCATCTAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3802 GCATGATTCCAGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3803 GCATGATTCTTAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3804 GCATTAGAGAAGTATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3805 GCATTAGTCAAGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3806 GCCAACGAGCGAGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3807 GCCAACGAGGCCACCT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3808 GCCAACGAGTCGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3809 GCCAACGGTAACATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3810 GCCAACGGTATGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3811 GCCAACGGTCGCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3812 GCCAACGGTGGCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3813 GCCAACGGTTATGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3814 GCCAACGTCCCTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3815 GCCAACGTCCTCACCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3816 GCCAACGTCGAGATAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3817 GCCAACGTCGAGCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3818 GCCAACGTCGTCGATA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3819 GCCAGCAAGGAAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3820 GCCAGCACAACGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3821 GCCAGCAGTATCATGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3822 GCCAGCAGTCTGTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3823 GCCAGCAGTTTACACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3824 GCCAGCATCGACGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3825 GCCAGGTCAAACTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3826 GCCAGGTCACATGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3827 GCCAGGTCACCCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3828 GCCAGGTCATAGAATG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3829 GCCAGGTGTATCGCGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3830 GCCAGGTGTCACAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3831 GCCAGGTGTCCAAATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3832 GCCAGTGAGAAACACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3833 GCCAGTGAGAGCCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3834 GCCAGTGAGGTCATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3835 GCCAGTGCAGTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3836 GCCAGTGGTTATTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3837 GCCATGGAGACTCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3838 GCCATGGAGTGGTTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3839 GCCATGGCAGATAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3840 GCCATGGCATCGTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3841 GCCATGGGTACAGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3842 GCCATGGTCTCTGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3843 GCCATTCAGATAACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3844 GCCATTCAGCGTGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3845 GCCATTCAGGATTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3846 GCCATTCAGTTCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3847 GCCATTCCACAATTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3848 GCCATTCCACGCTATA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3849 GCCATTCGTACGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3850 GCCATTCGTTCCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3851 GCCATTCTCATGGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3852 GCCATTCTCTTTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3853 GCCCAGAAGCTGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3854 GCCCAGAAGTAAACGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3855 GCCCAGACACGCGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3856 GCCCAGAGTAGAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3857 GCCCAGAGTATGGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3858 GCCCAGAGTCCGGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3859 GCCCAGATCCTCTAAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3860 GCCCAGATCGAAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3861 GCCCGAACAATTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3862 GCCCGAACACCCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3863 GCCCGAACATTAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3864 GCCCGAAGTACCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3865 GCCCGAATCTTGTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3866 GCCGATGAGACTAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3867 GCCGATGAGGTTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3868 GCCGATGAGTGGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3869 GCCGATGCACCTGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3870 GCCGATGCACGACAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3871 GCCGATGGTCACCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3872 GCCGATGGTCTGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3873 GCCGATGGTGCAATAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3874 GCCGATGTCGGCTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3875 GCCGATGTCGTAGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3876 GCCGATGTCGTCCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3877 GCCGTGACAAGTTGGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3878 GCCGTGACAGCTATTG SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3879 GCCGTGACATACGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3880 GCCGTGAGTTCAAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3881 GCCGTGAGTTGTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3882 GCCGTGATCCAGTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3883 GCCGTGATCTTCTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3884 GCCTGTTAGGTGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3885 GCCTGTTGTCGCACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3886 GCCTGTTGTTGGCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3887 GCCTGTTTCTTGGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3888 GCGAGAACAAGCAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3889 GCGAGAACAGTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3890 GCGAGAACATAGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3891 GCGAGAATCGCACGAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3892 GCGAGAATCGTCACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3893 GCGATCGAGACCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3894 GCGATCGAGAGCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3895 GCGATCGAGATACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3896 GCGATCGAGCCTATCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3897 GCGATCGCACACGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3898 GCGATCGCAGAGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3899 GCGATCGCAGATAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3900 GCGATCGCATATCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3901 GCGATCGCATCGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3902 GCGATCGGTGACACAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3903 GCGATCGGTGACATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3904 GCGATCGGTGCCCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3905 GCGATCGGTTATTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3906 GCGGAAAAGAAGTATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3907 GCGGAAAAGGTCCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3908 GCGGAAACACAAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3909 GCGGAAACACACCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3910 GCGGAAACACTTCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3911 GCGGAAACACTTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3912 GCGGAAACAGACCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3913 GCGGAAAGTTCGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3914 GCGGAAATCACTGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3915 GCGGAAATCCAGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3916 GCGGAAATCCGATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3917 GCGGATCAGAGAGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3918 GCGGATCAGCCTCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3919 GCGGATCAGGTTGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3920 GCGGATCCAGAGCTAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3921 GCGGATCCAGCGTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3922 GCGGATCGTCATGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3923 GCGGATCTCCGAAATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3924 GCGGATCTCGATACTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3925 GCGTGCAAGCTCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3926 GCGTGCAAGCTTAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3927 GCGTGCAAGGATACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3928 GCGTGCAAGGGTTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3929 GCGTGCACAGGTTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3930 GCGTGCAGTACGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3931 GCGTGCATCATGGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3932 GCGTGCATCGGAAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3933 GCGTGCATCGTTGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3934 GCGTGCATCTTTGATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3935 GCGTTTCCACGTAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3936 GCGTTTCGTAGGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3937 GCGTTTCTCCATTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3938 GCTACAAAGACATCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3939 GCTACAAAGACCGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3940 GCTACAAAGCCACCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3941 GCTACAACAAGCAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3942 GCTACAATCACCTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3943 GCTACAATCACGATCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3944 GCTACAATCGATGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3945 GCTACAATCTATGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3946 GCTACCTAGAGGGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3947 GCTACCTAGCACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3948 GCTACCTAGCATCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3949 GCTACCTCAGTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3950 GCTACCTGTTAGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3951 GCTACCTGTTATAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3952 GCTACCTTCTCAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3953 GCTCAAAAGAGTTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3954 GCTCAAAAGGCTTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3955 GCTCAAAAGTAGGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3956 GCTCAAAAGTTGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3957 GCTCAAACATAGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3958 GCTCAAATCGATGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3959 GCTGAATAGATAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3960 GCTGAATAGTGATGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3961 GCTGAATCAAATACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3962 GCTGAATGTATAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3963 GCTGAATGTCCTCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3964 GCTGAATTCGTTCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3965 GCTGCAGCAACCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3966 GCTGCAGCAGCAATTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3967 GCTGCAGCAGGAGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3968 GCTGCAGTCCTTACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3969 GCTGCAGTCGTTCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3970 GCTGGGTAGAATCGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3971 GCTGGGTAGGGCCCTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3972 GCTGGGTGTTCCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3973 GCTTCACAGGGCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3974 GCTTCACCACAGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3975 GCTTCACCATGGCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3976 GCTTCACGTACTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3977 GCTTCACTCACTCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3978 GCTTCACTCGAGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3979 GCTTGGGAGCGACTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3980 GCTTGGGAGGATGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3981 GCTTGGGAGTATTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3982 GCTTGGGAGTCTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3983 GCTTGGGAGTGCTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3984 GCTTGGGAGTGGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3985 GCTTGGGCAAGTGACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3986 GCTTGGGCACTCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3987 GCTTGGGCAGGTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3988 GCTTGGGCATAACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3989 GCTTGGGGTCACAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3990 GCTTGGGGTTCAAACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3991 GCTTGGGTCATTCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3992 GCTTTCGCATGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3993 GCTTTCGGTCGACTGC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3994 GCTTTCGTCGGTCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3995 GGAACCCCAACGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3996 GGAACCCCAACGTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3997 GGAACCCCAACTGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3998 GGAACCCCAATCTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
3999 GGAACCCCACCGTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4000 GGAACCCCACTTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4001 GGAACCCCATCCGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4002 GGAACCCGTCTCGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4003 GGAACCCGTGCATGTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4004 GGAAGTGAGCAATAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4005 GGAAGTGCAGCGACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4006 GGAAGTGCAGTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4007 GGAAGTGGTGACCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4008 GGAAGTGTCACTCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4009 GGAAGTGTCATGCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4010 GGAAGTGTCGCATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4011 GGAATCTAGCACTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4012 GGAATCTAGTCTCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4013 GGAATCTCACGTAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4014 GGAATCTGTAGCTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4015 GGAATCTGTTCCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4016 GGAATCTTCCATTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4017 GGAATCTTCGCTTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4018 GGAATGGAGCACTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4019 GGAATGGAGCCTTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4020 GGAATGGAGGATGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4021 GGAATGGAGTATCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4022 GGAATGGCAGCACAGA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4023 GGAATGGCATCGATGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4024 GGAATGGGTTCTTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4025 GGAATGGGTTGCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4026 GGAATGGTCACGGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4027 GGAATGGTCCGGCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4028 GGACGTCAGACGCTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4029 GGACGTCGTCCACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4030 GGACGTCGTGAGCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4031 GGACGTCGTGGACCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4032 GGACGTCTCAGCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4033 GGAGAACAGAAATTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4034 GGAGAACAGAATGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4035 GGAGAACCACTACACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4036 GGAGAACTCAACCCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4037 GGAGATGAGCGCCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4038 GGAGATGAGCTATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4039 GGAGATGAGTCACACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4040 GGAGATGAGTTTCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4041 GGAGATGCACACCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4042 GGAGATGCACGTACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4043 GGAGATGCATTGAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4044 GGAGATGGTAACTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4045 GGAGATGGTAGAATGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4046 GGAGATGGTATTAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4047 GGAGATGGTCTCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4048 GGAGATGGTGGTTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4049 GGAGATGTCCCATAGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4050 GGAGCAAAGACGTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4051 GGAGCAAAGGTAGATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4052 GGAGCAAAGGTGAGAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4053 GGAGCAAAGTAAACTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4054 GGAGCAACACAAATGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4055 GGAGCAACACGTGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4056 GGAGCAACATACATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4057 GGAGCAAGTGTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4058 GGAGCAAGTTGTGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4059 GGAGCAATCCTTACCG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4060 GGAGCAATCGTTCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4061 GGAGCAATCTTACGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4062 GGAGGATAGGGTCTTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4063 GGAGGATCAGCCTTCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4064 GGAGGATCATCTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4065 GGAGGATGTGCAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4066 GGAGGATGTTACCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4067 GGAGGATTCGGCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4068 GGAGGTAAGAACTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4069 GGAGGTAAGAATCGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4070 GGAGGTACAGCAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4071 GGAGGTAGTACTCCGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4072 GGAGGTAGTAGACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4073 GGAGGTAGTAGCTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4074 GGAGGTATCAGGACGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4075 GGAGGTATCCGAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4076 GGAGGTATCGAGGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4077 GGATCTACAAATGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4078 GGATCTACAGATAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4079 GGATCTATCCGATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4080 GGATGTTAGGTACATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4081 GGATGTTAGTCTGCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4082 GGATGTTCACCACATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4083 GGATGTTGTATGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4084 GGATGTTGTTAAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4085 GGATGTTTCAGAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4086 GGATGTTTCGCTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4087 GGATGTTTCGGAAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4088 GGATGTTTCGGCGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4089 GGATGTTTCGTAGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4090 GGATGTTTCTAAGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4091 GGCACGTAGAAGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4092 GGCACGTAGTGGCCTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4093 GGCACGTCAACACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4094 GGCACGTCACTTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4095 GGCACGTCATAGGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4096 GGCACGTGTATGGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4097 GGCACGTGTCTCTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4098 GGCAGTCAGGCACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4099 GGCAGTCCAGTGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4100 GGCAGTCCAGTTCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4101 GGCAGTCTCAGCTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4102 GGCAGTCTCCACCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4103 GGCAGTCTCCCTCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4104 GGCAGTCTCCGCGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4105 GGCGTCAAGCGCCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4106 GGCGTCACAACCAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4107 GGCGTCATCGCAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4108 GGCGTCATCTGGAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4109 GGCTGTGAGCGACAGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4110 GGCTGTGAGGATCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4111 GGCTGTGAGTCTTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4112 GGCTGTGCACCCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4113 GGCTGTGGTATGAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4114 GGCTGTGGTCAATGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4115 GGCTGTGGTGGGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4116 GGCTGTGGTGTCGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4117 GGCTGTGTCAGGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4118 GGCTGTGTCATGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4119 GGCTTGGAGGCTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4120 GGCTTGGAGGTAAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4121 GGCTTGGCAGAAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4122 GGCTTGGGTGAGGATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4123 GGCTTGGGTTATAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4124 GGCTTGGTCAAAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4125 GGCTTGGTCTAACACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4126 GGCTTTCAGCCAAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4127 GGCTTTCAGTCACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4128 GGCTTTCCACACCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4129 GGCTTTCCACTCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4130 GGCTTTCGTGCATCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4131 GGCTTTCGTTAGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4132 GGCTTTCGTTTCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4133 GGGAAGTAGAGTCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4134 GGGAAGTAGGATGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4135 GGGAAGTCAATTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4136 GGGAAGTGTAACGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4137 GGGAAGTGTCGATTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4138 GGGAAGTTCCGAAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4139 GGGAAGTTCTGCATGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4140 GGGACAAAGAGGGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4141 GGGACAAAGGACAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4142 GGGACAAAGGGTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4143 GGGACAACAAGACAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4144 GGGACAACACTTCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4145 GGGACAACAGAACCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4146 GGGACAAGTATACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4147 GGGACCTAGGAGCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4148 GGGACCTAGGCGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4149 GGGACCTCATGAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4150 GGGACCTGTCATTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4151 GGGACCTTCAAACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4152 GGGACTCCAAGAGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4153 GGGACTCCATTAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4154 GGGACTCTCAATGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4155 GGGACTCTCATGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4156 GGGACTCTCGACATAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4157 GGGACTCTCGGCGATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4158 GGGACTCTCTCTAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4159 GGGACTCTCTCTATGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4160 GGGAGATCAGGCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4161 GGGAGATCATCCGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4162 GGGAGATCATTCAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4163 GGGAGATGTAGTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4164 GGGAGATGTTAGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4165 GGGAGATTCCAATGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4166 GGGAGATTCCCTTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4167 GGGAGATTCGGTCTAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4168 GGGAGTACATACCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4169 GGGAGTAGTCAAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4170 GGGAGTAGTTGAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4171 GGGAGTATCGGCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4172 GGGAGTATCTAGTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4173 GGGATCCAGGCTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4174 GGGATCCAGTATGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4175 GGGATCCGTCAGGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4176 GGGATCCGTCGTACAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4177 GGGATCCTCGTCCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4178 GGGATGAAGGTAAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4179 GGGATGACAGAGTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4180 GGGATGACATGTCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4181 GGGATGAGTGAGACGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4182 GGGATGAGTGCGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4183 GGGATGAGTTGAGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4184 GGGATGATCGTCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4185 GGGATGATCGTTGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4186 GGGATGATCTTCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4187 GGGCCATCAGCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4188 GGGCCATCAGCTACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4189 GGGCCATCATCATGAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4190 GGGCCATGTAGGGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4191 GGGCCATGTCGAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4192 GGGCCATGTTAGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4193 GGGCCATTCTCGTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4194 GGGCGTTAGACGACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4195 GGGCGTTAGCTGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4196 GGGCGTTAGGCGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4197 GGGCGTTAGTCTTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4198 GGGCGTTGTGAGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4199 GGGCGTTGTGCAAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4200 GGGCGTTTCCTGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4201 GGGCGTTTCGAACCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4202 GGGCTACCAACGCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4203 GGGCTACCAATCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4204 GGGCTACGTACCTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4205 GGGCTACGTCGAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4206 GGGCTACGTGCGACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4207 GGGCTACGTGTCCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4208 GGGCTACGTTAGGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4209 GGGCTACTCAGCAATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4210 GGGCTACTCGTTTACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4211 GGGCTACTCTACCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4212 GGGCTCAAGACCTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4213 GGGCTCAAGAGAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4214 GGGCTCAAGCTTTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4215 GGGCTCACATCCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4216 GGGCTCACATGACCCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4217 GGGCTCAGTAGAATGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4218 GGGCTCAGTATGGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4219 GGGCTCAGTGCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4220 GGGCTCATCGCTGTTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4221 GGGCTCATCTACACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4222 GGGTAGAAGGTGCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4223 GGGTAGACAGTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4224 GGGTATTAGCCATCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4225 GGGTATTAGCTTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4226 GGGTATTCACGCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4227 GGGTATTGTTTGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4228 GGGTCACAGATAACAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4229 GGGTCACAGCAGTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4230 GGGTCACAGGATGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4231 GGGTCACAGGATTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4232 GGGTCACCATCACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4233 GGGTCACGTAGGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4234 GGGTCACGTTGATGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4235 GGGTCACTCACTGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4236 GGGTCTGAGCGATGAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4237 GGGTCTGAGCTCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4238 GGGTCTGCAAGCGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4239 GGGTCTGTCCATGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4240 GGGTCTGTCGAACCTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4241 GGGTCTGTCTTCTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4242 GGGTGAAAGCAAACAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4243 GGGTGAAAGGAAAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4244 GGGTGAAGTCAACCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4245 GGGTGAAGTTAGCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4246 GGGTGAATCTTAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4247 GGGTGTCAGCCATTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4248 GGGTGTCTCTCGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4249 GGGTTATAGTCACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4250 GGGTTATCAATTGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4251 GGGTTATGTTGTGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4252 GGGTTATTCTTGATTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4253 GGGTTTAAGAAGTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4254 GGGTTTAAGGCCTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4255 GGGTTTAAGGCGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4256 GGGTTTACATTCACCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4257 GGGTTTAGTACCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4258 GGGTTTAGTCGAATTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4259 GGGTTTATCGAAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4260 GGGTTTATCTAGACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4261 GGGTTTATCTGGTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4262 GGTAACTAGCATTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4263 GGTAACTGTAAGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4264 GGTAACTTCCAACTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4265 GGTAACTTCTTACCGC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4266 GGTAATCAGATCCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4267 GGTAATCAGATGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4268 GGTAATCAGTTCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4269 GGTAATCCAAACCACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4270 GGTAATCCACAGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4271 GGTAATCCAGTGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4272 GGTAATCGTGGTACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4273 GGTAATCGTGTATTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4274 GGTAATCGTTTACCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4275 GGTAATCGTTTCGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4276 GGTAATCTCCCATAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4277 GGTAATCTCGAGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4278 GGTAATCTCGATAACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4279 GGTAGAGAGGATGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4280 GGTAGAGAGTGCTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4281 GGTAGAGCAGCCTACG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4282 GGTAGAGCATGGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4283 GGTAGAGCATGGCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4284 GGTAGAGGTGTTTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4285 GGTAGAGTCCTACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4286 GGTCACGAGCATGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4287 GGTCACGAGTTAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4288 GGTCACGCAAGTCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4289 GGTCACGCATCGCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4290 GGTCACGTCCGTGTCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4291 GGTCTGGAGAGTGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4292 GGTCTGGAGCTGACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4293 GGTCTGGAGGCCCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4294 GGTCTGGAGGTAACTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4295 GGTCTGGAGTACAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4296 GGTCTGGAGTGGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4297 GGTCTGGGTAAGCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4298 GGTCTGGGTCATCGGC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4299 GGTCTGGGTGGCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4300 GGTCTGGTCAGCTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4301 GGTCTGGTCTATCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4302 GGTGAAGAGGACAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4303 GGTGAAGAGGGTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4304 GGTGAAGCACATAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4305 GGTGAAGGTAGTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4306 GGTGAAGGTATTTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4307 GGTGAAGTCACGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4308 GGTGAAGTCAGTCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4309 GGTGAAGTCCACGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4310 GGTGAAGTCCCGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4311 GGTGAAGTCGCTTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4312 GGTGAAGTCGGCAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4313 GGTGATTAGAGTTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4314 GGTGATTAGCGTTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4315 GGTGATTAGTCACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4316 GGTGATTAGTTACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4317 GGTGATTAGTTGGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4318 GGTGATTGTACAGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4319 GGTGATTGTGACGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4320 GGTGATTGTGGAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4321 GGTGATTGTGGTCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4322 GGTGATTGTTTCGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4323 GGTGATTTCATCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4324 GGTGATTTCGAGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4325 GGTGGCTAGGACAACC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4326 GGTGGCTAGGGCCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4327 GGTGGCTAGGTACTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4328 GGTGGCTAGTTGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4329 GGTGGCTGTTCGATTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4330 GGTGTCGAGAAGCGGG SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4331 GGTGTCGAGAGTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4332 GGTGTCGCAAACTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4333 GGTGTCGTCTAACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4334 GGTGTTAAGCAATTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4335 GGTGTTATCACGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4336 GGTGTTATCAGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4337 GGTGTTATCGGTTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4338 GGTTAACAGTAAACGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4339 GGTTAACAGTTGGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4340 GGTTAACCAACGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4341 GGTTAACCAGATCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4342 GGTTAACCATATCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4343 GGTTAACGTTTAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4344 GGTTAACTCCGTGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4345 GGTTCTCAGAGGATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4346 GGTTCTCAGGTTCACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4347 GGTTCTCAGTAAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4348 GGTTCTCCACTGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4349 GGTTCTCTCGCGTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4350 GGTTGTAAGACCTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4351 GGTTGTACAACGTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4352 GGTTGTACATCACGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4353 GGTTGTACATGTCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4354 GGTTGTATCCCAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4355 GTAACACAGCATTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4356 GTAACACAGCGGTATG SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4357 GTAACACAGTCTGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4358 GTAACACAGTGCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4359 GTAACACTCACTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4360 GTAACACTCTGACCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4361 GTAACCAAGCCTCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4362 GTAACCACACCGTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4363 GTAACCACAGCGATTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4364 GTAACCAGTAGGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4365 GTAACCAGTTTCTATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4366 GTAAGTCAGCTTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4367 GTAAGTCAGGATATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4368 GTAAGTCCAGGCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4369 GTAAGTCGTCCACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4370 GTAAGTCGTCCGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4371 GTAAGTCTCCATTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4372 GTAAGTCTCTCGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4373 GTAATCGAGAGCAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4374 GTAATCGAGCCAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4375 GTAATCGAGCTCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4376 GTAATCGAGTCATTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4377 GTAATCGCACACCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4378 GTAATCGCACTGCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4379 GTAATCGCATTGGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4380 GTAATCGGTCCGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4381 GTAATCGGTGACTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4382 GTAATCGGTGTCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4383 GTAATCGGTTCCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4384 GTAATCGGTTCCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4385 GTAATGCAGCCGGATA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4386 GTAATGCCAATTGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4387 GTAATGCCACCTGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4388 GTAATGCCAGAAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4389 GTAATGCCAGGAGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4390 GTAATGCCATGGCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4391 GTAATGCTCGTGGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4392 GTACAACAGATAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4393 GTACAACAGCGCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4394 GTACAACCATGTCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4395 GTACAACGTAATGATG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4396 GTACAACGTATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4397 GTACAACGTCATGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4398 GTACAACGTCGAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4399 GTACAACTCAAGCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4400 GTACAACTCCTCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4401 GTACAGTTCAGCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4402 GTACAGTTCAGCTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4403 GTACAGTTCCGTGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4404 GTAGAAAAGCAGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4405 GTAGAAAAGTAGCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4406 GTAGAAACAAGAGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4407 GTAGAAACAAGCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4408 GTAGAAACACATTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4409 GTAGAAACACGGTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4410 GTAGAAACATCCGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4411 GTAGAAAGTTCTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4412 GTAGAAAGTTCTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4413 GTAGAAATCAACTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4414 GTAGAAATCTTCGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4415 GTAGAGGAGCCTGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4416 GTAGAGGCAGAGCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4417 GTAGAGGCATCTCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4418 GTAGAGGGTGCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4419 GTAGAGGGTGCTCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4420 GTAGATCAGATGTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4421 GTAGATCAGGGTGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4422 GTAGATCCAAAGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4423 GTAGATCCAGGTATGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4424 GTAGATCGTAGGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4425 GTAGATCGTTGCTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4426 GTAGATCTCATGCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4427 GTAGATCTCGGCCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4428 GTAGCTAAGAGTCACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4429 GTAGCTACACTGTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4430 GTAGCTACAGCGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4431 GTAGCTAGTACCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4432 GTAGCTAGTATGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4433 GTAGCTAGTCACCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4434 GTAGCTATCATGCCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4435 GTAGCTATCGAGAATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4436 GTAGCTATCTCTTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4437 GTAGGAGAGTGGCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4438 GTAGGAGCAACAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4439 GTAGGAGCACGAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4440 GTAGGAGCATTCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4441 GTAGGAGTCTGTGCGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4442 GTAGGTTAGCCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4443 GTAGGTTAGTATAACG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4444 GTAGGTTCAACGATTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4445 GTAGGTTCAATCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4446 GTAGGTTCAGATACCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4447 GTAGGTTCATGTGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4448 GTAGGTTGTACCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4449 GTAGGTTGTCACTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4450 GTAGGTTTCTTGAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4451 GTAGTACAGCACTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4452 GTAGTACAGGACGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4453 GTAGTACAGGTAGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4454 GTAGTACAGTACTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4455 GTAGTACCACGACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4456 GTAGTACCAGACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4457 GTAGTACCATAGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4458 GTAGTACCATCCCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4459 GTAGTACGTCACTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4460 GTAGTACGTCCGGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4461 GTAGTACTCAAGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4462 GTATTGGAGAAGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4463 GTATTGGAGACTCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4464 GTATTGGAGTCTGCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4465 GTATTGGCAAGAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4466 GTATTGGCATCAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4467 GTATTGGCATCCTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4468 GTATTGGCATCGGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4469 GTATTGGGTTTAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4470 GTATTTCAGCAAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4471 GTATTTCAGGCTGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4472 GTATTTCAGTCTACCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4473 GTATTTCAGTTTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4474 GTATTTCTCAGTGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4475 GTATTTCTCCAACTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4476 GTCAAACAGATGCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4477 GTCAAACAGCAGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4478 GTCAAACCAAAGGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4479 GTCAAACCACAAGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4480 GTCAAACCAGCTGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4481 GTCAAACGTCCTGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4482 GTCAAACGTGCATCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4483 GTCAAACTCCCTCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4484 GTCAAACTCCTTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4485 GTCAAGTAGATCCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4486 GTCAAGTAGATGGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4487 GTCAAGTCAACTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4488 GTCAAGTGTGACATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4489 GTCAAGTGTGGTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4490 GTCAAGTTCAGGACGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4491 GTCAAGTTCCGATCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4492 GTCAAGTTCCGTTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4493 GTCAAGTTCGCAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4494 GTCAAGTTCGGTGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4495 GTCACGGAGGTAAACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4496 GTCACGGAGTCATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4497 GTCACGGGTTCCATTT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4498 GTCACGGTCCCTTGTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4499 GTCACGGTCGACACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4500 GTCACTCCAAAGGGCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4501 GTCACTCCACATTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4502 GTCACTCCAGGTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4503 GTCACTCGTCTTCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4504 GTCACTCGTTGCTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4505 GTCAGCGAGACAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4506 GTCAGCGAGGATATGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4507 GTCAGCGAGGTTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4508 GTCAGCGCACTACTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4509 GTCAGCGTCTCGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4510 GTCATCCAGGGTTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4511 GTCATCCAGGGTTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4512 GTCATCCCAAGGACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4513 GTCATCCCACATACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4514 GTCATCCGTGGATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4515 GTCATCCTCTGGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4516 GTCATGAAGCACTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4517 GTCATGAAGGTTCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4518 GTCATGACAAATCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4519 GTCATGACAAGATCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4520 GTCATGACAAGTATCC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4521 GTCATGACAATGACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4522 GTCATGAGTATAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4523 GTCATGAGTCCAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4524 GTCATGATCACGAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4525 GTCATTTCATAGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4526 GTCATTTGTGATCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4527 GTCATTTGTGTCATGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4528 GTCATTTTCAAACTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4529 GTCATTTTCGTGGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4530 GTCCACTAGCTAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4531 GTCCACTAGTAATCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4532 GTCCACTCAACGTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4533 GTCCACTCACCCTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4534 GTCCACTCATTCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4535 GTCCACTCATTGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4536 GTCCACTGTAATCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4537 GTCCACTGTACAGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4538 GTCCACTGTGCATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4539 GTCCACTTCCAGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4540 GTCCACTTCTACCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4541 GTCCCATGTACTCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4542 GTCCCATGTATACGGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4543 GTCCCATGTATGAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4544 GTCCCATGTTGATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4545 GTCCCATTCACTTGGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4546 GTCCTCAAGCAAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4547 GTCCTCAAGTCATGGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4548 GTCCTCAGTATACAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4549 GTCCTCAGTCTAGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4550 GTCCTCAGTTAAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4551 GTCCTCAGTTACCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4552 GTCCTCATCAAATAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4553 GTCCTCATCACCTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4554 GTCCTCATCAGGGATG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4555 GTCCTCATCGACATTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4556 GTCCTCATCGCCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4557 GTCCTCATCGCCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4558 GTCGAATAGAGGTTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4559 GTCGAATAGTACAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4560 GTCGAATCAATAGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4561 GTCGAATGTCACCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4562 GTCGAATGTGGTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4563 GTCGAATGTGTTGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4564 GTCGAATTCAACTACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4565 GTCGAATTCGCATGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4566 GTCGAATTCTCTCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4567 GTCGCGAAGGTCGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4568 GTCGCGACACCTTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4569 GTCGCGACAGTACTAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4570 GTCGCGACAGTCTACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4571 GTCGCGATCACCATGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4572 GTCGCGATCTCCGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4573 GTCGTAAAGAATCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4574 GTCGTAAAGCCGATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4575 GTCGTAAAGGTTATAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4576 GTCGTAAAGTGGAATT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4577 GTCGTAACAACGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4578 GTCGTAAGTCACGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4579 GTCGTAATCGGAATGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4580 GTCGTAATCTCCAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4581 GTCGTTCCAATACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4582 GTCGTTCCACAAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4583 GTCGTTCCAGTAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4584 GTCGTTCGTTCTTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4585 GTCGTTCGTTGACGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4586 GTCGTTCTCCGAACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4587 GTCTACCAGATCCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4588 GTCTACCAGCAACTCT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4589 GTCTACCAGTGTTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4590 GTCTACCGTCACCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4591 GTCTACCGTCCTCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4592 GTCTACCTCAAGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4593 GTCTACCTCTACGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4594 GTCTAGAGTTAAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4595 GTCTAGAGTTACTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4596 GTCTAGATCAAGATAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4597 GTCTAGATCGCAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4598 GTCTCACAGAAAGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4599 GTCTCACAGAGCAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4600 GTCTCACAGGTACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4601 GTCTCACCAATTGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4602 GTCTCACCACATTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4603 GTCTCACTCGCTAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4604 GTCTCACTCGTAGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4605 GTCTGTCAGATCCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4606 GTCTGTCAGCACACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4607 GTCTGTCAGTGTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4608 GTCTGTCCACCAATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4609 GTCTGTCCACCAGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4610 GTCTGTCCAGAGAATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4611 GTCTTTAAGCTGTGCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4612 GTCTTTACAATGTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4613 GTCTTTACACTATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4614 GTCTTTACAGACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4615 GTCTTTACAGTAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4616 GTCTTTAGTAGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4617 GTCTTTAGTCACCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4618 GTCTTTAGTGTCCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4619 GTCTTTAGTGTTCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4620 GTCTTTAGTTAGAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4621 GTCTTTAGTTCTTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4622 GTCTTTATCATGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4623 GTGACGCAGAAAGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4624 GTGACGCCAGCAATTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4625 GTGACGCGTCTACATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4626 GTGACGCGTTTGGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4627 GTGACGCTCTAGAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4628 GTGAGCCAGACTACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4629 GTGAGCCAGCTTCATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4630 GTGAGCCCAGGCCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4631 GTGAGCCCAGGCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4632 GTGAGCCGTCATTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4633 GTGAGCCGTCCAGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4634 GTGAGCCGTGATAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4635 GTGAGCCGTTAAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4636 GTGAGCCTCCATTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4637 GTGAGCCTCCTCTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4638 GTGAGCCTCTGTCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4639 GTGAGGAAGAGTCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4640 GTGAGGATCCAGTACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4641 GTGAGTTAGCCTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4642 GTGAGTTCAAGCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4643 GTGAGTTCACATTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4644 GTGAGTTCAGAAATTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4645 GTGAGTTCAGCTATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4646 GTGAGTTTCAAGTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4647 GTGATGTAGACATGCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4648 GTGATGTAGACTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4649 GTGATGTAGCGCTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4650 GTGATGTAGTGCGACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4651 GTGATGTGTCATTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4652 GTGATGTGTCTGTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4653 GTGATGTTCAAGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4654 GTGATGTTCAGATTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4655 GTGATGTTCCACGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4656 GTGCACGAGAGAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4657 GTGCACGCAATCCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4658 GTGCACGCATGGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4659 GTGCACGGTGCCTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4660 GTGCACGGTTACGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4661 GTGCAGCAGAGCATCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4662 GTGCAGCAGGCCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4663 GTGCAGCGTATCGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4664 GTGCAGCGTGTGAATA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4665 GTGCAGCGTTACGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4666 GTGCAGCGTTTGTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4667 GTGCAGCTCCTACCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4668 GTGCGTGAGGAGAATG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4669 GTGCGTGCAACCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4670 GTGCGTGCAATGCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4671 GTGCGTGGTACAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4672 GTGCGTGGTGTTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4673 GTGCGTGTCAAGCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4674 GTGCGTGTCCTTTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4675 GTGCTGGAGATGACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4676 GTGCTGGGTACTCGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4677 GTGCTGGGTATTGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4678 GTGCTGGGTCAAAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4679 GTGCTGGGTCGAATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4680 GTGCTGGGTCGCACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4681 GTGCTGGGTTGCCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4682 GTGCTTCAGACCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4683 GTGCTTCAGCGGACAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4684 GTGCTTCCACTTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4685 GTGCTTCCATACGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4686 GTGCTTCGTACCAATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4687 GTGCTTCGTCATCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4688 GTGCTTCGTTATGACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4689 GTGCTTCTCTCACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4690 GTGCTTCTCTGGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4691 GTGGAAGAGCCAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4692 GTGGAAGAGGAGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4693 GTGGAAGAGGTCCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4694 GTGGAAGCAATATCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4695 GTGGAAGCACAGCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4696 GTGGAAGTCTACTATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4697 GTGGAGAAGAATCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4698 GTGGAGAAGCAAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4699 GTGGAGACAATCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4700 GTGGAGAGTAGAAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4701 GTGGAGAGTAGTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4702 GTGGAGAGTCAGCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4703 GTGGAGATCGATTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4704 GTGGCGTAGCTCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4705 GTGGCGTGTAGCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4706 GTGGCGTGTGTGAATA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4707 GTGGCGTTCCTCTTTC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4708 GTGGCGTTCGACATAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4709 GTGGGAAAGGTAGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4710 GTGGGAACAATAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4711 GTGGGAACAGCTGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4712 GTGGGAACATCGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4713 GTGGGAAGTACGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4714 GTGGGAAGTATGAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4715 GTGGGAAGTCCAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4716 GTGGGAAGTTGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4717 GTGGGAAGTTTCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4718 GTGGGAATCTACCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4719 GTGGTTACAATTCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4720 GTGGTTAGTCTTACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4721 GTGGTTATCCTCTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4722 GTGGTTATCGGCCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4723 GTGTAACCAGTGACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4724 GTGTAACCATCACCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4725 GTGTAACGTCAACCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4726 GTGTAACTCCCAAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4727 GTGTAACTCGAACGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4728 GTGTAACTCGCGTCGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4729 GTGTAACTCGTCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4730 GTGTCCTAGAAGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4731 GTGTCCTAGATCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4732 GTGTCCTAGGTTCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4733 GTGTCCTCAAATGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4734 GTGTCCTGTAACACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4735 GTGTCCTGTCCTCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4736 GTGTCCTGTGGTCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4737 GTGTCCTTCTCGCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4738 GTGTGATCAATTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4739 GTGTGATCACTTCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4740 GTGTGATCATATCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4741 GTGTGATCATGTTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4742 GTGTGATGTAACAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4743 GTGTGATGTAACAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4744 GTGTGATGTACAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4745 GTGTGATTCATCTATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4746 GTGTGATTCTCCGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4747 GTGTGATTCTTCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4748 GTGTGGCAGCCAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4749 GTGTGGCCACCAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4750 GTGTGGCCATAAGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4751 GTGTGGCCATTGCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4752 GTGTGGCGTCCCTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4753 GTGTGGCTCCCTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4754 GTGTTAGAGAGTTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4755 GTGTTCCAGCCTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4756 GTGTTCCAGTGTTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4757 GTGTTCCCAAAGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4758 GTGTTCCGTCAAGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4759 GTGTTCCGTGATGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4760 GTGTTCCTCGACACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4761 GTGTTCCTCGACGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4762 GTGTTCCTCGCCACTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4763 GTTACAGCAGACCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4764 GTTACAGCATCCGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4765 GTTACAGGTGAAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4766 GTTACAGTCAAATAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4767 GTTACAGTCGGATAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4768 GTTACAGTCTACTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4769 GTTACCCAGAAAGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4770 GTTACCCGTGAGGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4771 GTTACCCGTTTGTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4772 GTTACCCTCACACCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4773 GTTACCCTCCCTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4774 GTTACCCTCGGAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4775 GTTACCCTCGGTCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4776 GTTACCCTCGTACACA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4777 GTTACGAAGACCATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4778 GTTACGAAGAGCGACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4779 GTTACGACAAAGCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4780 GTTACGACAGTTCACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4781 GTTACGAGTAACGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4782 GTTACGAGTTGTCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4783 GTTACGATCTGAGATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4784 GTTACGATCTTCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4785 GTTAGACAGATTCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4786 GTTAGACAGCCAAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4787 GTTAGACAGGCCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4788 GTTAGACAGTGGTTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4789 GTTAGACCAGTAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4790 GTTAGACCATATGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4791 GTTAGACGTGGAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4792 GTTAGACTCATCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4793 GTTAGACTCGAAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4794 GTTAGTGAGGCGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4795 GTTAGTGCATGAGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4796 GTTAGTGGTTCTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4797 GTTAGTGTCAAATGAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4798 GTTAGTGTCTCATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4799 GTTATGGCAAGCGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4800 GTTATGGGTGAGAACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4801 GTTATGGGTGGATACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4802 GTTATGGGTGGGAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4803 GTTATGGGTTGATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4804 GTTATGGTCACCCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4805 GTTCATTAGACGACGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4806 GTTCATTAGGACATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4807 GTTCATTAGGGTCACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4808 GTTCATTAGTGGGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4809 GTTCATTCACTGAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4810 GTTCATTCAGTAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4811 GTTCATTGTACTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4812 GTTCATTGTGCGGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4813 GTTCATTTCCACGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4814 GTTCCGTAGGGTAATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4815 GTTCCGTAGTATTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4816 GTTCCGTCAAAGGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4817 GTTCCGTCACGAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4818 GTTCCGTCAGCACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4819 GTTCCGTCAGGCTATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4820 GTTCCGTCATTGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4821 GTTCCGTGTCAGGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4822 GTTCCGTGTGTACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4823 GTTCCGTGTTAAACAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4824 GTTCGCTAGTGTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4825 GTTCGCTCAACGATTC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4826 GTTCGCTCAGATACTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4827 GTTCGCTCAGGTATGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4828 GTTCGCTGTGGCCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4829 GTTCGCTTCTCAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4830 GTTCTATAGACCCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4831 GTTCTATAGAGAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4832 GTTCTATAGCCTCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4833 GTTCTATAGGTGTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4834 GTTCTATAGGTTCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4835 GTTCTATTCCTCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4836 GTTCTATTCTGCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4837 GTTGAACCAACACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4838 GTTGAACGTATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4839 GTTGAACGTCGTCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4840 GTTGAACGTGCAGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4841 GTTGAACGTTTCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4842 GTTGCGGAGAAGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4843 GTTGCGGCAACTCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4844 GTTGCGGGTAGCTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4845 GTTGCGGGTCTGTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4846 GTTGCGGTCAGCACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4847 GTTGCTCAGGTACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4848 GTTGCTCAGTATCCTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4849 GTTGCTCCAGATCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4850 GTTGCTCCAGCCGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4851 GTTGCTCCATCCTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4852 GTTGCTCGTCGCATTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4853 GTTGCTCGTGTGGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4854 GTTGCTCGTTAGAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4855 GTTGCTCTCAAGTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4856 GTTGCTCTCAGTGATC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4857 GTTGTAGCAGATACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4858 GTTGTAGGTATAATGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4859 GTTGTAGGTTTCGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4860 GTTGTAGTCATTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4861 GTTGTAGTCCATCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4862 GTTGTCCAGAGGTTTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4863 GTTGTCCCACGGCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4864 GTTGTCCGTGTGATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4865 GTTGTCCGTTGACGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4866 GTTGTCCTCTAGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4867 GTTGTCCTCTCATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4868 GTTGTGAAGCCTTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4869 GTTGTGACAAGCGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4870 GTTGTGACACTGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4871 GTTGTGAGTTAGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4872 GTTGTGATCTATCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4873 GTTTACTAGAGCAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4874 GTTTACTTCAAGGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4875 GTTTACTTCCAGTACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4876 GTTTACTTCGCTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4877 GTTTACTTCTTAGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4878 GTTTGGAAGCGCATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4879 GTTTGGACAAGATGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4880 GTTTGGAGTAGGACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4881 GTTTGGAGTCCACTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4882 GTTTGGAGTGCCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4883 GTTTGGAGTTTGGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4884 GTTTGGATCGGCCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4885 TAACACGCAGCTTTCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4886 TAACACGCATCGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4887 TAACACGGTATGTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4888 TAACACGGTCCGGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4889 TAACACGGTGTATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4890 TAACCAGAGAAATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4891 TAACCAGCACGAAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4892 TAACCAGCACTGCACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4893 TAACCAGCAGGTTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4894 TAACCAGGTATGAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4895 TAACCAGTCCACCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4896 TAACCAGTCGAACACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4897 TAACGACAGGACATCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4898 TAACGACAGTCATGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4899 TAACGACAGTTCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4900 TAACGACCAAGGCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4901 TAACGACGTACCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4902 TAACGACGTTGTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4903 TAACGACTCAATCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4904 TAACGACTCACGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4905 TAACGACTCCCGAATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4906 TAACTTCAGACCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4907 TAACTTCAGACGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4908 TAACTTCAGCTCATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4909 TAACTTCGTAATGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4910 TAACTTCGTCAGTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4911 TAACTTCGTCCGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4912 TAAGCACGTTGCTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4913 TAAGCACTCCGCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4914 TAAGCACTCCGTAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4915 TAAGCACTCGTCTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4916 TAAGCACTCTAAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4917 TAAGCCAAGAAGCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4918 TAAGCCAAGCCTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4919 TAAGCCAAGTATGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4920 TAAGCCACAGTTACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4921 TAAGCCACATGCCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4922 TAAGCCAGTCTACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4923 TAAGCCAGTCTTCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4924 TAAGCCAGTGATACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4925 TAAGCCATCGCAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4926 TAAGCCATCTGCGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4927 TAAGCGTCACATAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4928 TAAGCGTCACATGACT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4929 TAAGCGTGTACAGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4930 TAAGCGTTCCCATTTA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4931 TAAGTCGGTACAGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4932 TAAGTCGGTTACACTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4933 TAAGTCGTCATGGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4934 TAATCTCAGACCCTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4935 TAATCTCTCACACCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4936 TAATCTCTCATCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4937 TAATCTCTCGTGAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4938 TAATTCCAGAAGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4939 TAATTCCCAAGGGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4940 TAATTCCCATGAGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4941 TAATTCCGTACTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4942 TAATTCCGTAGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4943 TAATTCCGTATGACAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4944 TAATTCCGTGTTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4945 TAATTCCGTTCTCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4946 TAATTCCTCACTTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4947 TAATTCCTCCGCGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4948 TAATTCCTCGTGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4949 TAATTCCTCTGCCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4950 TACAACGAGAGAATCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4951 TACAACGAGCAGGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4952 TACAACGAGGCTAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4953 TACAACGGTTGGCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4954 TACAACGGTTGGGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4955 TACAACGTCATAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4956 TACAACGTCTGGCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4957 TACACCCAGCTTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4958 TACACCCAGGAACATT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4959 TACACCCAGTACTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4960 TACACCCCAACTCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4961 TACACCCCAAGCGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4962 TACACCCCAATCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4963 TACACCCCATCGTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4964 TACACCCCATGAAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4965 TACACCCGTCCGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4966 TACACCCTCCATTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4967 TACACCCTCGACCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4968 TACACCCTCTTTGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4969 TACAGGTCATATGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4970 TACAGGTGTAATCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4971 TACAGGTGTAGAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4972 TACAGGTTCATCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4973 TACATTCAGAGGCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4974 TACATTCAGCAACCAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4975 TACATTCCATCTTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4976 TACATTCGTCTCGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4977 TACATTCTCACCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4978 TACATTCTCAGTCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4979 TACCCACAGCGCATCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4980 TACCCACCAAGGGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4981 TACCCACCATAACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4982 TACCCACTCATCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4983 TACCCGTAGAATCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4984 TACCCGTCAAGCGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4985 TACCCGTGTAACCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4986 TACCCGTTCGGAGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4987 TACCCGTTCGTCCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4988 TACCGAACAAACGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4989 TACCGAACACCTTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4990 TACCGAACAGGCATTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4991 TACCGAACATCTTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4992 TACCGAAGTCAAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4993 TACCGAATCTGGAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4994 TACCGGGAGAGATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4995 TACCGGGGTACTTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4996 TACCGGGGTATCCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4997 TACCGGGGTCGAGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4998 TACCGGGGTGTGGACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
4999 TACCGGGGTTTGGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5000 TACCGGGTCAACGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5001 TACCGGGTCTAACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5002 TACCGGGTCTACGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5003 TACCGGGTCTCGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5004 TACCTCGAGAGACAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5005 TACCTCGTCACGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5006 TACCTCGTCATCCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5007 TACCTCGTCTGTTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5008 TACCTGCCACGCGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5009 TACCTGCCAGTAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5010 TACCTGCGTATCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5011 TACCTGCTCAGCTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5012 TACCTGCTCCTCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5013 TACCTGCTCTTCCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5014 TACGCTCAGGACAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5015 TACGCTCCACTAAACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5016 TACGCTCCATCATCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5017 TACGCTCGTCTCTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5018 TACGCTCGTGTTTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5019 TACGCTCGTTGGGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5020 TACGCTCTCCATTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5021 TACGCTCTCGTTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5022 TACGCTCTCTACACTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5023 TACGGGCAGCTGCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5024 TACGGGCAGTCATGAA SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5025 TACGGGCAGTGTGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5026 TACGGGCCAATCCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5027 TACGGGCCACCGGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5028 TACGGGCGTAAGCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5029 TACGGGCGTAGATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5030 TACGGGCGTAGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5031 TACGGGCTCAAGTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5032 TACGGGCTCATGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5033 TACGGTAAGCCACAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5034 TACGGTAAGCCTTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5035 TACGGTAAGCGGTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5036 TACGGTAAGGTAAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5037 TACGGTAAGGTGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5038 TACGGTAAGTCATCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5039 TACGGTAAGTGCCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5040 TACGGTACAGAAACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5041 TACGGTATCGAGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5042 TACGTCCAGCTATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5043 TACGTCCCACGACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5044 TACGTCCCATAATGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5045 TACGTCCCATCGGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5046 TACGTCCTCGTGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5047 TACTGCCAGTCACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5048 TACTGCCCAACACGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5049 TACTGCCCATGCAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5050 TACTGCCTCCTCTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5051 TACTTACAGAGAATCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5052 TACTTACCACTGCACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5053 TACTTACCATAGCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5054 TACTTACCATGAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5055 TACTTACCATGTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5056 TACTTACGTAACCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5057 TACTTACGTCGAATTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5058 TACTTACGTTCGTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5059 TACTTACGTTCTTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5060 TACTTACGTTTCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5061 TACTTACTCGTCGACG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5062 TACTTACTCTTAAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5063 TACTTCAAGTGGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5064 TACTTCACAATGCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5065 TACTTCAGTGGATACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5066 TACTTCAGTGGGAGAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5067 TACTTCAGTGTTCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5068 TACTTCATCCGGACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5069 TACTTCATCTCAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5070 TACTTGTCACTCCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5071 TACTTGTGTCGATTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5072 TACTTGTTCACGTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5073 TACTTGTTCAGAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5074 TACTTGTTCCGACGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5075 TAGACCAAGATGCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5076 TAGACCAAGCCTCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5077 TAGACCAAGGCGCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5078 TAGACCACATAGGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5079 TAGACCACATGTGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5080 TAGACCAGTCCTTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5081 TAGACCAGTTGGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5082 TAGACTGAGACATCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5083 TAGACTGAGTCGCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5084 TAGACTGCACGGTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5085 TAGACTGCAGCAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5086 TAGACTGCATGTCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5087 TAGACTGCATGTGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5088 TAGACTGGTCGTCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5089 TAGACTGGTTGTTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5090 TAGACTGTCAACTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5091 TAGAGTCAGTAACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5092 TAGAGTCCAATTGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5093 TAGAGTCGTATTTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5094 TAGAGTCGTCATCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5095 TAGAGTCGTTGCTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5096 TAGAGTCTCAAGAATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5097 TAGAGTCTCTAAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5098 TAGAGTCTCTCATAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5099 TAGATCGAGATACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5100 TAGATCGAGCCGCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5101 TAGATCGAGGTGCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5102 TAGATCGAGTGGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5103 TAGATCGCAGGGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5104 TAGATCGGTTGTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5105 TAGCACAAGCGGTATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5106 TAGCACAAGTGCTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5107 TAGCACAGTACCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5108 TAGCACAGTACTGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5109 TAGCACAGTGTCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5110 TAGCACAGTTAGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5111 TAGCACATCGTGCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5112 TAGCACATCTCATGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5113 TAGGAGGTCATCGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5114 TAGGAGGTCGGCATAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5115 TAGGAGGTCTCTGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5116 TAGGAGGTCTTCGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5117 TAGGGTTAGCCTGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5118 TAGGGTTAGTGCCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5119 TAGGGTTCAGGACATG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5120 TAGGGTTGTATGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5121 TAGGTACAGACCAACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5122 TAGGTACAGGTTCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5123 TAGGTACAGTAGGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5124 TAGGTACCATGTCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5125 TAGGTACGTCAGGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5126 TAGGTACGTGCCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5127 TAGGTACTCCCGTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5128 TAGGTACTCTAACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5129 TAGGTACTCTCAGGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5130 TAGGTTGAGAGAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5131 TAGGTTGAGTTACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5132 TAGGTTGCAGGTTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5133 TAGGTTGCATGTGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5134 TAGGTTGGTTGGATCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5135 TAGGTTGTCCTCCACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5136 TAGGTTGTCGAGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5137 TAGGTTGTCGCCTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5138 TAGGTTGTCGTTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5139 TAGTGCACAATGTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5140 TAGTGCACACTCCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5141 TAGTGCACATGGGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5142 TAGTGCAGTACTTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5143 TAGTGCAGTCATCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5144 TAGTGCAGTGTAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5145 TAGTGCAGTGTGTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5146 TAGTGCAGTTTAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5147 TAGTGCATCAGAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5148 TAGTGCATCCCTCATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5149 TAGTGCATCTTCCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5150 TATACCTAGTATAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5151 TATACCTCAACTGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5152 TATACCTCAATAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5153 TATACCTCATAACGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5154 TATACCTGTAATCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5155 TATACCTGTACTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5156 TATACCTGTATCTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5157 TATACCTGTTCTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5158 TATACCTTCGAGATAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5159 TATACCTTCGCCTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5160 TATACCTTCGTACCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5161 TATATCCAGTGAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5162 TATATCCAGTTTGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5163 TATATCCCAAACTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5164 TATATCCCAGGTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5165 TATATCCGTCAAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5166 TATATCCTCGAGTCTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5167 TATCAGGAGAGAGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5168 TATCAGGAGCGATGCA SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5169 TATCAGGCACTATGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5170 TATCAGGCATCGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5171 TATCAGGGTCATGACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5172 TATCAGGTCCACGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5173 TATCCTAAGAACAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5174 TATCCTAAGTAAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5175 TATCCTAAGTAATTGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5176 TATCCTACACTTACAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5177 TATCCTAGTAGATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5178 TATCCTAGTAGTTACC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5179 TATCCTAGTCTGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5180 TATCCTAGTGATTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5181 TATCCTATCACTAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5182 TATCCTATCCCTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5183 TATCCTATCGTTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5184 TATCCTATCTAGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5185 TATCCTATCTGGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5186 TATCGCCAGATGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5187 TATCGCCCAGGACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5188 TATCGCCTCAAGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5189 TATCTGTCACATATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5190 TATCTGTCAGTCAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5191 TATCTGTGTGAGGATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5192 TATCTGTGTGCTTATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5193 TATCTGTTCCTAAACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5194 TATCTTGAGAATCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5195 TATCTTGAGCGATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5196 TATCTTGCAATTGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5197 TATCTTGCATAGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5198 TATCTTGCATGGCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5199 TATCTTGGTCCACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5200 TATCTTGGTGCACAAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5201 TATCTTGGTGGCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5202 TATCTTGGTTGCATCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5203 TATCTTGTCATTCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5204 TATCTTGTCCATTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5205 TATCTTGTCCTAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5206 TATCTTGTCGTCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5207 TATCTTGTCTGTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5208 TATGTTCAGATGAATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5209 TATGTTCAGCTCCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5210 TATGTTCAGGGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5211 TATGTTCCACTCAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5212 TATGTTCGTCCTGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5213 TATGTTCTCGAGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5214 TATTCCAAGCGTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5215 TATTCCACAAGATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5216 TATTCCAGTAGCTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5217 TATTCCAGTCATCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5218 TATTCCAGTCGGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5219 TATTCCATCCGACATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5220 TATTCCATCGAAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5221 TATTCCATCGATCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5222 TATTCCATCTGTTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5223 TATTGCTAGGTTCATC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5224 TATTGCTCAAGGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5225 TATTGCTCACGGTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5226 TATTGCTCAGGCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5227 TATTGCTGTAGCTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5228 TATTGCTTCACTACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5229 TATTGCTTCAGTCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5230 TATTGCTTCCTGCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5231 TATTGGGAGCTAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5232 TATTGGGAGCTCGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5233 TATTGGGCACAGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5234 TATTGGGCAGTCTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5235 TATTGGGGTCTGCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5236 TATTGGGTCCCTATTA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5237 TATTGGGTCGATGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5238 TATTGGGTCTGCGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5239 TATTTCGCACAACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5240 TATTTCGCAGGGAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5241 TATTTCGCATACTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5242 TATTTCGGTTCTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5243 TATTTCGGTTTGGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5244 TCAAGACCAGCGTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5245 TCAAGACGTACTAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5246 TCAAGCAAGTCCCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5247 TCAAGCACAGAACTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5248 TCAAGCACATCCTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5249 TCAAGCAGTTGCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5250 TCAAGCAGTTGGGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5251 TCAAGCATCAACGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5252 TCAAGCATCTGACCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5253 TCAAGTGAGCTTAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5254 TCAAGTGAGGGAGATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5255 TCAAGTGCACCTTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5256 TCAAGTGCAGGCCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5257 TCAAGTGGTCGATTCA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5258 TCAAGTGGTTATGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5259 TCAAGTGGTTCCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5260 TCAAGTGGTTTGGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5261 TCAAGTGTCCACGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5262 TCAAGTGTCCGTGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5263 TCAAGTGTCTTTCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5264 TCAATCTAGGGTTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5265 TCAATCTAGTCTGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5266 TCAATCTCAAATGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5267 TCAATCTCACGTTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5268 TCAATCTCAGGAATCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5269 TCAATCTCATATTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5270 TCAATCTGTAAGTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5271 TCAATCTGTCTTTCTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5272 TCAATCTTCTCCAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5273 TCAATTCAGAGGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5274 TCAATTCCACCCAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5275 TCAATTCCAGGTGACA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5276 TCAATTCGTCTGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5277 TCAATTCTCAGGTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5278 TCAATTCTCCGATGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5279 TCACAAGAGGCTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5280 TCACAAGAGTTCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5281 TCACAAGCACCTGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5282 TCACAAGCAGACCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5283 TCACAAGCAGTCTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5284 TCACAAGGTCCATCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5285 TCACAAGGTGGGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5286 TCACAAGTCCTCTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5287 TCACAAGTCGGCTATA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5288 TCACAAGTCGTAGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5289 TCACACCCAATTTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5290 TCACACCCACACCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5291 TCACACCGTAACCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5292 TCACACCGTAAGCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5293 TCACACCGTTCAATCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5294 TCACACCGTTCCATTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5295 TCACATTAGACTCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5296 TCACATTAGTGTAGTA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5297 TCACATTCAAGAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5298 TCACATTCACAGTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5299 TCACATTGTATTCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5300 TCACATTTCCTCCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5301 TCACATTTCTCTAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5302 TCACGCTCATTGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5303 TCACGCTGTATTGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5304 TCACGCTGTTCCTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5305 TCACGGGAGAGGACTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5306 TCACGGGAGCGCCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5307 TCACGGGCAAGTGATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5308 TCACGGGGTACCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5309 TCACGGGGTATCGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5310 TCACGGGGTCCACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5311 TCACGGGTCGCGATCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5312 TCACTATCACTGATTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5313 TCACTATGTACCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Proliferating endothelial cell nan nan nan CL:0000115 endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5314 TCACTATGTAGGCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5315 TCACTATGTGTCCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5316 TCACTATGTTCAATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5317 TCACTATTCCGAGATT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5318 TCACTATTCTCTGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5319 TCACTATTCTGAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5320 TCACTATTCTTGGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5321 TCACTCGAGCATCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5322 TCACTCGCAGTTGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5323 TCACTCGGTCTAGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5324 TCACTCGTCAGGACGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5325 TCACTCGTCGTCTACC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5326 TCAGCAAAGCCATTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5327 TCAGCAAAGGGAGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5328 TCAGCAAAGTAAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5329 TCAGCAACAATAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5330 TCAGCAACAGCAGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5331 TCAGCAACAGCGGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5332 TCAGCAAGTCATGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5333 TCAGCAATCCATTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5334 TCAGCAATCTGAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5335 TCAGCAATCTGGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5336 TCAGCCTAGCACTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5337 TCAGCCTCACCCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5338 TCAGCCTCATTAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5339 TCAGCCTGTCGCATTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5340 TCAGCCTGTCTCCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5341 TCAGCCTGTTGTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5342 TCAGCCTTCATCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5343 TCAGCCTTCATTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5344 TCAGCCTTCATTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5345 TCAGGGCAGACATGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5346 TCAGGGCCAAGAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5347 TCAGGGCCAAGCCATT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5348 TCAGGGCGTCAAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5349 TCAGGGCTCCCTCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5350 TCAGGTAAGGAACTAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5351 TCAGGTACAGGCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5352 TCAGGTATCGGTTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5353 TCAGGTATCGTAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5354 TCAGGTATCTCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5355 TCAGTCCAGCACCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5356 TCAGTCCCAAACTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5357 TCAGTCCCACCAAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5358 TCAGTCCGTTCCGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5359 TCAGTCCGTTCTTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5360 TCAGTCCGTTGCGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5361 TCAGTCCTCGCCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5362 TCAGTGAAGGGCATGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5363 TCAGTGACAAGAGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5364 TCAGTGACAAGGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5365 TCAGTGACATTCCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5366 TCAGTGAGTGCCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5367 TCAGTGAGTTCCTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5368 TCAGTGAGTTGTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5369 TCAGTGATCAACGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5370 TCAGTGATCCGAACGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5371 TCAGTTTAGACGTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5372 TCAGTTTAGCTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5373 TCAGTTTAGGGCAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5374 TCAGTTTAGGTGCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5375 TCAGTTTCAAACCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5376 TCAGTTTCAAAGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5377 TCAGTTTCAATAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5378 TCAGTTTCAGTAACAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5379 TCAGTTTCATCGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5380 TCAGTTTGTTGCATCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5381 TCAGTTTTCAAATGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5382 TCATACTAGTCGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5383 TCATACTCAACAAAGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5384 TCATACTCAAGAATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5385 TCATACTCAGAACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5386 TCATACTGTCCAACGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5387 TCATACTGTGCGCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5388 TCATACTGTTCTTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5389 TCATACTTCACTGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5390 TCATACTTCAGTGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5391 TCATATCAGCACGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5392 TCATATCAGCTAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5393 TCATATCCAACTTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5394 TCATATCCACGGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5395 TCATATCGTAGGATAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5396 TCATATCTCTTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5397 TCATCATAGAGCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5398 TCATCATAGCTGTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5399 TCATCATAGGATTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5400 TCATCATCACCTTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5401 TCATCATCAGCACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5402 TCATCATGTGACTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5403 TCATCATGTGGTAACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5404 TCATCATTCAAAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5405 TCATCATTCATCTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5406 TCATCATTCGCACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5407 TCATCCGAGACCAACG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5408 TCATCCGAGGGTGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5409 TCATCCGCACTTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5410 TCATCCGGTAGCCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5411 TCATCCGGTGTCCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5412 TCATCCGTCCATCGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5413 TCATCCGTCTTGGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5414 TCATGAGAGAGCAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5415 TCATGAGCATTGCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5416 TCATGAGGTAGCTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5417 TCATGAGGTGACTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5418 TCATGAGTCATTACCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5419 TCATGCCAGATGTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5420 TCATGCCAGGAACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5421 TCATGCCAGGGTGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5422 TCATGCCCAAAGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5423 TCATGCCCAATCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5424 TCATGCCCACGTACTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5425 TCATGCCGTCCGGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5426 TCATGCCTCGGTGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5427 TCATGCCTCTGGGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5428 TCATGGAAGTGAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5429 TCATGGAAGTTGCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5430 TCATGGACATGCGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5431 TCATGGATCTTTACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5432 TCATGTTGTATACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5433 TCATGTTGTTGCATAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5434 TCATGTTTCCCTTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5435 TCATTACAGCCGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5436 TCATTACAGGCTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5437 TCATTACAGGTTACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5438 TCATTACAGTTGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5439 TCATTACCAGATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5440 TCATTACGTACGAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5441 TCATTACGTCCCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5442 TCATTACGTCTGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5443 TCATTACGTGTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5444 TCATTACTCCTATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5445 TCATTACTCCTGATAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5446 TCATTACTCGCAACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5447 TCATTACTCTCTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5448 TCATTCACAACACACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5449 TCATTCACAATAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5450 TCATTCACAGGTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5451 TCATTCACATGGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5452 TCATTCATCAACCTCC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5453 TCATTCATCCGCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5454 TCATTCATCTCGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5455 TCATTGTAGACTTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5456 TCATTGTAGAGCTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5457 TCATTGTAGCCTGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5458 TCATTGTAGGTTATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5459 TCATTGTCACTGCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5460 TCATTGTGTTATGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5461 TCATTGTGTTCATCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5462 TCATTGTTCATTTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5463 TCATTGTTCTCAAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5464 TCATTGTTCTGAATCG SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5465 TCATTTGAGGTCCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5466 TCATTTGCAGGTTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5467 TCATTTGGTGCCCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5468 TCATTTGTCCCTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5469 TCATTTGTCCGTCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5470 TCATTTGTCGCGTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5471 TCCACCACAGCCGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5472 TCCACCAGTCCGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5473 TCCACCATCACTTATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5474 TCCACCATCTAGTACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5475 TCCACGTAGAAGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5476 TCCACGTAGCTAGATA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5477 TCCACGTAGGCTTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5478 TCCACGTCAAAGCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5479 TCCACGTGTCATCGCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5480 TCCACGTTCTAGTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5481 TCCAGAAAGGCATGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5482 TCCAGAACATGAAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5483 TCCAGAAGTACCCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5484 TCCAGAAGTCCTATAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5485 TCCAGAAGTGGTATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5486 TCCAGAATCCAGTACA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5487 TCCAGAATCTTAGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5488 TCCATCGAGCTGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5489 TCCATCGAGGAACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5490 TCCATCGAGGCTAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5491 TCCATCGCAGCGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5492 TCCATCGGTAACTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5493 TCCATCGGTAGGCTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5494 TCCATCGGTCGGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5495 TCCATCGTCGAATCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5496 TCCATGCAGAACCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5497 TCCATGCAGAGAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5498 TCCATGCAGAGTAACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5499 TCCATGCCAAATGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5500 TCCATGCCAGGTGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5501 TCCATGCCATTCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5502 TCCATGCGTTTACTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5503 TCCATGCTCTCTCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5504 TCCATGCTCTGAATCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5505 TCCCACAAGCAGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5506 TCCCACAGTCACCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5507 TCCCACAGTGTTCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5508 TCCCACAGTTTCGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5509 TCCCACATCGGATACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5510 TCCCAGTAGCAAACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5511 TCCCAGTAGCCTTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5512 TCCCAGTCAACTTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5513 TCCCAGTCATAGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5514 TCCCAGTGTGGTTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5515 TCCCAGTTCACCGACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5516 TCCCATGAGCCATTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5517 TCCCATGAGTATGATG SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5518 TCCCATGCAACGGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5519 TCCCATGCAGATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5520 TCCCATGGTCAACCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5521 TCCCATGTCGACATTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5522 TCCGAAAAGTCTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5523 TCCGAAACACTGCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5524 TCCGAAAGTGCGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5525 TCCGAAAGTTACGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5526 TCCGAAAGTTATGACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5527 TCCGAAAGTTCCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5528 TCCGAAATCACAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5529 TCCGAAATCACTCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5530 TCCGAAATCATCAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5531 TCCGAAATCCTCACGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5532 TCCGAAATCGCCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5533 TCCGAAATCTTCGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5534 TCCGATCGTCGCACGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5535 TCCGATCGTGCATGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5536 TCCGATCGTTCAGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5537 TCCGATCTCCAACCGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5538 TCCGGGAAGTCGTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5539 TCCGGGAAGTGTACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5540 TCCGGGACACGGTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5541 TCCGGGACAGCTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5542 TCCGGGAGTCCGGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5543 TCCGGGAGTCGCACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5544 TCCGGGAGTCTCGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5545 TCCGGGAGTCTGCATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5546 TCCGGGATCGGTGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5547 TCCGTGTCAGTCCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5548 TCCGTGTGTACGTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5549 TCCGTGTGTCCTTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5550 TCCGTGTGTGCTCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5551 TCCGTGTTCAAGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5552 TCCGTGTTCTTTGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5553 TCCTAATAGAAACCAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5554 TCCTAATAGGATAATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5555 TCCTAATCACACACGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5556 TCCTAATCACAGGATG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5557 TCCTAATCAGGCTACC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5558 TCCTAATGTGAGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5559 TCCTAATGTTCTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5560 TCCTCCCAGCACTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5561 TCCTCCCCAACCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5562 TCCTCCCCATTCTGTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5563 TCCTCCCGTCGGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5564 TCCTCCCGTCTGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5565 TCCTCCCTCAGTAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5566 TCCTCCCTCTATCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5567 TCCTCGAAGTAGATCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5568 TCCTCGACAAGCTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5569 TCCTCGACACTAGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5570 TCCTCGAGTCTGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5571 TCCTCTTAGACGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5572 TCCTCTTAGCCAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5573 TCCTCTTAGCGGACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5574 TCCTCTTAGGATCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5575 TCCTCTTAGGTAACTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5576 TCCTCTTAGGTGCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5577 TCCTCTTCAACAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5578 TCCTCTTCAACTGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5579 TCCTCTTCAGAATCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5580 TCCTCTTGTAGAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5581 TCCTCTTTCGCGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5582 TCCTGCACAAGTTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5583 TCCTGCACACTCATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5584 TCCTGCACACTTGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5585 TCCTGCACAGGCTATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5586 TCCTGCAGTCTAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5587 TCCTGCAGTTCGATTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5588 TCCTGCAGTTGTACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5589 TCCTGCATCCTTCACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5590 TCCTGCATCTGTGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5591 TCCTTCTAGGAACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5592 TCCTTCTAGGATGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5593 TCCTTCTCAAGCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5594 TCCTTCTCACAATGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5595 TCCTTCTTCACGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5596 TCCTTCTTCCGGTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5597 TCCTTTCCAGGCCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5598 TCCTTTCGTCTTGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5599 TCGAACAAGGAATCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5600 TCGAACAAGTGCCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5601 TCGAACACACAAACGG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5602 TCGAACACACAACCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5603 TCGAACACAGACACCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5604 TCGAACAGTCTGTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5605 TCGAACATCATCACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5606 TCGAACATCTTACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5607 TCGAAGTAGGCCTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5608 TCGAAGTAGTCTGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5609 TCGAAGTCAACCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5610 TCGAAGTCAGGCTATT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5611 TCGAAGTGTCCCAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5612 TCGAAGTGTCGAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5613 TCGACCTAGGCTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5614 TCGACCTCACACCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5615 TCGACCTCATTGAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5616 TCGACCTGTATTCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5617 TCGACCTGTGACTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5618 TCGACGGAGAGAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5619 TCGACGGAGCCGAACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5620 TCGACGGCATCATCTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5621 TCGACGGGTCTCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5622 TCGACGGTCGCTGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5623 TCGACGGTCTGCTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5624 TCGATTTAGCTAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5625 TCGATTTGTGAGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5626 TCGATTTGTTATTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5627 TCGATTTTCTGAGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5628 TCGCACTAGGCTCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5629 TCGCACTAGTGAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5630 TCGCACTAGTTGGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5631 TCGCACTCATGAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5632 TCGCACTGTCTACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5633 TCGCACTGTCTGATCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5634 TCGCACTGTTGCACGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5635 TCGCACTGTTGGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5636 TCGCACTTCGACCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5637 TCGCACTTCGGAATTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5638 TCGCACTTCTAGCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5639 TCGCACTTCTGAGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5640 TCGCAGGAGGGTGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5641 TCGCAGGAGTCACTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5642 TCGCAGGGTATGACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5643 TCGCAGGGTCACTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5644 TCGCAGGTCCTCCACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5645 TCGCAGGTCGACCTAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5646 TCGCAGGTCGGCATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5647 TCGCTCAAGGACTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5648 TCGCTCACAATGGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5649 TCGCTCAGTCGCAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5650 TCGCTCATCCTTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5651 TCGCTCATCTATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5652 TCGCTTGAGCAGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5653 TCGCTTGAGCCTCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5654 TCGCTTGCATCCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5655 TCGCTTGGTCTAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5656 TCGCTTGTCACAAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5657 TCGCTTGTCGGAATTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5658 TCGGATACATAGGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5659 TCGGATATCCTTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5660 TCGGATATCTTCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5661 TCGGGACAGAGCATAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5662 TCGGGACCAAGCCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5663 TCGGGACCACACAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5664 TCGGGACCATTAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5665 TCGGGACGTGGCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5666 TCGGGACTCACTTATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5667 TCGGGCACAACGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5668 TCGGGCAGTATGTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5669 TCGGGCATCATAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5670 TCGGGCATCATCACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5671 TCGGGTGAGCTAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5672 TCGGGTGAGTTTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5673 TCGGGTGCAGAAATTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5674 TCGGGTGCATAGAATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5675 TCGGGTGCATCGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5676 TCGGGTGGTTGTCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5677 TCGGGTGGTTGTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5678 TCGGGTGGTTTCGGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5679 TCGGGTGTCAGTGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5680 TCGGGTGTCGTAGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5681 TCGGTCTAGCCAGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5682 TCGGTCTAGTAGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5683 TCGGTCTCAGCGTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5684 TCGGTCTGTATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5685 TCGGTCTGTCCGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5686 TCGGTCTTCAACTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5687 TCGGTCTTCAATCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5688 TCGGTCTTCGTAGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5689 TCGGTCTTCTATACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5690 TCGTAGAAGCAGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5691 TCGTAGACAAGTGACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5692 TCGTAGAGTCTCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5693 TCGTAGAGTGGCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5694 TCGTAGATCGTAGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5695 TCGTAGATCTCGACCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5696 TCGTCCAAGAGGTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5697 TCGTCCAAGCCATCCG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5698 TCGTCCACAGCCGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5699 TCGTCCACAGTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5700 TCGTCCACAGTGTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5701 TCGTCCACAGTTGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5702 TCGTCCACATCAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5703 TCGTCCAGTCGAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5704 TCGTCCATCCAGCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5705 TCGTCCATCGTGCATA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5706 TCGTGCTAGCCTCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5707 TCGTGCTCAACCTAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5708 TCGTGCTGTAGTCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5709 TCGTGCTGTCGAAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5710 TCGTGCTTCCAGCACG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5711 TCGTGGGAGACAAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5712 TCGTGGGAGCCGCACT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5713 TCGTGGGGTCCGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5714 TCGTGGGGTGCAGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5715 TCGTGGGGTTATGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5716 TCGTGGGGTTTACTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5717 TCGTGGGTCAAATAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5718 TCGTGGGTCTAGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5719 TCTAACTAGACGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5720 TCTAACTAGGCCCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5721 TCTAACTCATGGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5722 TCTAACTCATGTGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5723 TCTAACTGTGAATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5724 TCTAACTGTTATCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5725 TCTAACTTCTCGCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5726 TCTACATAGCCGATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5727 TCTACATAGGAGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5728 TCTACATAGTCTGCGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5729 TCTACATGTAAGGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5730 TCTACATGTGTAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5731 TCTACATGTTAGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5732 TCTACATTCAATCGGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5733 TCTACCGAGTTCCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5734 TCTACCGGTCCAGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5735 TCTATACCAGAATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5736 TCTATACGTGAGAACC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5737 TCTATACTCGTGCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5738 TCTATACTCGTTCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5739 TCTATACTCTAGATCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5740 TCTATCAAGCCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5741 TCTATCAAGGCCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5742 TCTATCAAGTCAAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5743 TCTATCAAGTTCCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5744 TCTATCAGTGAATATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5745 TCTATCAGTTAAGGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5746 TCTATCATCGACGACC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5747 TCTCACGAGACCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5748 TCTCACGAGGTGAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5749 TCTCACGAGTTGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5750 TCTCACGCAGACGGAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5751 TCTCACGGTATCGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5752 TCTCACGGTTCTCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5753 TCTCACGGTTGCCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5754 TCTCACGTCAGGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5755 TCTCACGTCGAGAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5756 TCTCAGCCACAGTATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5757 TCTCAGCCACATGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5758 TCTCAGCCACTACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5759 TCTCAGCGTGGGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5760 TCTCAGCGTTGGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5761 TCTCCGAAGCTACAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5762 TCTCCGAAGTCTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5763 TCTCCGACAACCGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5764 TCTCCGAGTCATCGGC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5765 TCTCCGATCAACGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5766 TCTCCGATCCACGGAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5767 TCTCTGGCAATAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5768 TCTCTGGCACGCAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5769 TCTCTGGCAGGTGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5770 TCTCTGGCAGTTGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5771 TCTCTGGGTCGCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5772 TCTCTGGGTTTGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5773 TCTCTGGTCTTAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5774 TCTGCCACAACTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5775 TCTGCCACATATGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5776 TCTGCCACATGTGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5777 TCTGCCAGTAAGGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5778 TCTGCCAGTATACAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5779 TCTGCCAGTCGACGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5780 TCTGCCAGTGTTACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5781 TCTGCCATCTCATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5782 TCTGGCTGTTAGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5783 TCTGGCTTCGCCTTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5784 TCTGGCTTCGTTCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5785 TCTGTCGAGCTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5786 TCTGTCGAGTAGATCA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5787 TCTGTCGAGTCCTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5788 TCTGTCGCATTGCCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5789 TCTGTCGGTACCTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5790 TCTGTCGGTAGTTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5791 TCTGTCGGTATGTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5792 TCTGTCGGTCCGGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5793 TCTGTCGGTCTTCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5794 TCTGTCGGTGTCTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5795 TCTGTCGGTTTACACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5796 TCTGTCGGTTTCACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5797 TCTGTCGTCGACGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5798 TCTTAGTAGAAGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5799 TCTTAGTAGACGGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5800 TCTTAGTAGTAATACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5801 TCTTAGTCACCTAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5802 TCTTAGTGTACGTACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5803 TCTTAGTGTCGCATTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5804 TCTTAGTTCGCAATGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5805 TCTTCCTAGATACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5806 TCTTCCTAGGTTACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5807 TCTTCCTAGGTTCATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5808 TCTTCCTAGTGGATTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5809 TCTTCCTGTTCCGCAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5810 TCTTCCTTCAGCCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5811 TCTTCCTTCGGAACTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5812 TCTTCCTTCTTCCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5813 TCTTGCGAGACGTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5814 TCTTGCGAGAGTAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5815 TCTTGCGAGGCTCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5816 TCTTGCGAGTAGGATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5817 TCTTGCGCATTAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5818 TCTTGCGGTCGCAACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5819 TCTTGCGGTTTCGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5820 TCTTGCGTCAAGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5821 TCTTGCGTCCCGAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5822 TCTTTGAAGGTAGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5823 TCTTTGAAGTCATGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5824 TCTTTGAAGTGCCCGT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5825 TCTTTGACACCATATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5826 TCTTTGACACGCGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5827 TCTTTGACACTACTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5828 TCTTTGAGTGGGACAT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5829 TCTTTGAGTGTTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5830 TCTTTGAGTTGCCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5831 TCTTTGATCAGCACCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5832 TCTTTGATCCAAATGC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5833 TGAACGTAGTTCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5834 TGAACGTCAATTGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5835 TGAACGTGTGGTATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5836 TGAACGTTCCAAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5837 TGAACGTTCGTGCATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5838 TGAATCGAGAGTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5839 TGAATCGAGCGATTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5840 TGAATCGCAGTCTACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5841 TGAATCGGTAGGAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5842 TGAATCGTCATCTATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5843 TGAATCGTCCGCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5844 TGAATCGTCTACGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5845 TGAATCGTCTACTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5846 TGAATCGTCTAGCATG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5847 TGAATGCCACCAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5848 TGAATGCCACTCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5849 TGAATGCTCATTGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5850 TGAATGCTCCTGTTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5851 TGAATGCTCGATACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5852 TGAATGCTCGCCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5853 TGAATGCTCTCATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5854 TGACAGTAGGTTAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5855 TGACAGTGTAACATGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5856 TGACAGTGTAGCTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5857 TGACAGTGTCGTCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5858 TGACAGTGTGGCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5859 TGACAGTTCGCGCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5860 TGACAGTTCTCAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5861 TGACCCTAGAATTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5862 TGACCCTAGGTGAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5863 TGACCCTCACGAGGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5864 TGACCCTCAGGATTCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5865 TGACCCTCATAGAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5866 TGACCCTGTAGCTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5867 TGACCCTGTCCTGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5868 TGACCCTGTCGGCACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5869 TGACGCGAGGAAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5870 TGACGCGAGTACTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5871 TGACGCGCAGCTACTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5872 TGACGCGCATGCAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5873 TGACGCGGTACATTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5874 TGACGCGGTACGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5875 TGACGCGGTCGTTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5876 TGACGCGGTGCATGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5877 TGACGCGTCCTGATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5878 TGACGCGTCGCTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5879 TGACGCGTCGTAGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5880 TGACTCCAGGGCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5881 TGACTCCAGGTCTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5882 TGACTCCAGTGTTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5883 TGACTCCCAGCAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5884 TGACTCCGTTTGATCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5885 TGACTCCTCCTCAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5886 TGACTCCTCGCAATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5887 TGAGACTAGGGAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5888 TGAGACTAGTGGATAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5889 TGAGACTCACGACAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5890 TGAGACTCAGTTCACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5891 TGAGCATAGGCAGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5892 TGAGCATAGGTCTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5893 TGAGCATAGTTTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5894 TGAGCATCATGGGATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5895 TGAGCATGTTGGGATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5896 TGAGCATTCTCCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5897 TGAGCATTCTTGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5898 TGAGCGCAGACTTCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5899 TGAGCGCAGGAATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5900 TGAGCGCCAAGGACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5901 TGAGCGCCAGAGATGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5902 TGAGCGCCAGAGTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5903 TGAGCGCGTACAGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5904 TGAGCGCGTACTAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5905 TGAGCGCGTGAGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5906 TGAGCGCGTGCCGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5907 TGAGCGCTCAGAGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5908 TGAGGAGAGTCGGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5909 TGAGGAGCAAGTACCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5910 TGAGGAGGTACCCACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5911 TGAGGAGGTCCTCATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5912 TGAGGAGTCCATTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5913 TGAGGAGTCCGAGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5914 TGAGGGAAGGCTAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5915 TGAGGGACACCTCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5916 TGAGGGAGTACCTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5917 TGAGGGAGTCCACTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5918 TGAGGGAGTCCATCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5919 TGAGGGAGTGGAATGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5920 TGAGGGAGTGGCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5921 TGAGGGAGTTACTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5922 TGAGGGATCCTAGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5923 TGAGGTTCAATTAGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5924 TGAGGTTGTATTCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5925 TGAGGTTGTCCCACGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5926 TGAGGTTTCGCAACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5927 TGAGTCAAGAGAGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5928 TGAGTCAAGGACAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5929 TGAGTCACACCAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5930 TGAGTCAGTCGTACTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5931 TGAGTCAGTGATACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5932 TGAGTCATCACTTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5933 TGAGTCATCTGCTTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5934 TGATCAGGTAGTAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5935 TGATCAGTCCAAGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5936 TGATCTTCACGCGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5937 TGATCTTCACTGCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5938 TGATCTTTCTAACGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5939 TGATCTTTCTTAAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5940 TGATGCAAGCGATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5941 TGATGCAAGTAGTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5942 TGATGCACACCAGACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5943 TGATGCACAGATCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5944 TGATGCAGTAGGGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5945 TGATGCAGTTAGGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5946 TGATGCATCAGTGGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5947 TGATGCATCCATCACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5948 TGATGGTAGCGTATGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5949 TGATGGTAGGTACAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5950 TGATGGTAGTTACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5951 TGATGGTCAGGTGAGT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5952 TGATGGTCATCTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5953 TGATGGTTCTACAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5954 TGATGGTTCTCGCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5955 TGATTCTCAACTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5956 TGATTCTCATCGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5957 TGATTCTCATGTTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5958 TGATTCTGTACTCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5959 TGATTCTGTCCAGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5960 TGATTCTGTCCCAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5961 TGATTCTTCAGACAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5962 TGATTCTTCTGCAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5963 TGATTTCAGCTCCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5964 TGATTTCAGGAGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5965 TGATTTCAGTTCCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5966 TGATTTCGTTAAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5967 TGCACGGAGCATCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5968 TGCACGGAGTGATTCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5969 TGCACGGCAATGGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5970 TGCACGGGTATATGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5971 TGCACGGGTTAGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5972 TGCACGGTCCACCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5973 TGCAGATAGAGTAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5974 TGCAGATAGCGCAATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5975 TGCAGATAGTCCTACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5976 TGCAGATCAGCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5977 TGCAGATGTACTGACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5978 TGCAGATTCCGGACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5979 TGCAGATTCGGTCAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5980 TGCAGATTCTAGAACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5981 TGCAGGCAGCTCCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5982 TGCAGGCGTAGGTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5983 TGCAGGCGTCGCTTAA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5984 TGCAGGCGTGTCCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5985 TGCAGGCTCTATCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5986 TGCAGTAAGCGCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5987 TGCAGTAAGTTGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5988 TGCAGTACAATCAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5989 TGCAGTACAGATCACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5990 TGCAGTACATAAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5991 TGCAGTACATATTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5992 TGCAGTAGTAGAAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5993 TGCAGTATCATGAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5994 TGCAGTATCGGCTGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5995 TGCAGTATCTAGAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5996 TGCATCCCACTGCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5997 TGCATCCTCACGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5998 TGCATCCTCCGATCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
5999 TGCATCCTCGGTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6000 TGCATCCTCTCACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6001 TGCATCCTCTGAGATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6002 TGCATGAAGTCCTACA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6003 TGCATGAAGTTAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6004 TGCATGACAGCGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6005 TGCATGACATGAGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6006 TGCATGAGTTATGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6007 TGCATGATCAAGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6008 TGCATGATCACCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6009 TGCATGATCATGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6010 TGCATGATCGCTCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6011 TGCCGAGAGGAATCGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6012 TGCCGAGAGTATGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6013 TGCCGAGCAACACGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6014 TGCCGAGCAGACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6015 TGCCGAGGTAGCGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6016 TGCCGAGGTCTGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6017 TGCCGAGTCAAGCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6018 TGCCGAGTCCGATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6019 TGCCGAGTCGACTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6020 TGCCGAGTCGCCTATC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6021 TGCGACGAGACGATAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6022 TGCGACGAGCCTCACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6023 TGCGACGCAGAACTCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6024 TGCGACGCAGACTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6025 TGCGACGCAGGCTACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6026 TGCGACGGTGTATTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6027 TGCGATAAGGTAAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6028 TGCGATACAATTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6029 TGCGATACACTAAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6030 TGCGATAGTAAGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6031 TGCGATAGTGACCGAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6032 TGCGGCAAGCTAGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6033 TGCGGCACAACTGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6034 TGCGGCACATCCGATA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6035 TGCGGCATCAGCACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6036 TGCGGCATCCTTTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6037 TGCGGCATCTCGGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6038 TGCGGGTCACTCTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6039 TGCGGGTGTGTTCATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6040 TGCGGGTGTTCGTACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6041 TGCGGGTGTTGACGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6042 TGCGGGTGTTTCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6043 TGCGGGTTCATGACAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6044 TGCGGGTTCCGATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6045 TGCTCCAAGACAGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6046 TGCTCCAAGGTGCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6047 TGCTCCACAAGGCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6048 TGCTCCACACAAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6049 TGCTCCACATAAGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6050 TGCTCCAGTGCAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6051 TGCTCCAGTTCTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6052 TGCTCGTAGAGGTTAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6053 TGCTCGTAGAGTTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6054 TGCTCGTAGGAACGTC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6055 TGCTCGTCATCCGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6056 TGCTCGTCATGTCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6057 TGCTCGTGTTGAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6058 TGCTCGTTCCAAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6059 TGCTCGTTCGGATAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6060 TGCTCGTTCGTAGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6061 TGCTGAAAGACGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6062 TGCTGAAAGTGCACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6063 TGCTGAACAAATTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6064 TGCTGAACAAGACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6065 TGCTGAACAGCTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6066 TGCTGAAGTATTTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6067 TGCTGAATCCCATTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6068 TGCTTCGAGAGTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6069 TGCTTCGAGATCCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6070 TGCTTCGAGGTAGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6071 TGCTTCGAGTTAACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6072 TGCTTCGAGTTAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6073 TGCTTCGTCGTCAACA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6074 TGCTTGCAGGGACAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6075 TGCTTGCCACCGAATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6076 TGCTTGCCACCTATCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6077 TGCTTGCTCACCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6078 TGGAACTAGATGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6079 TGGAACTAGCAGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6080 TGGAACTAGTCCGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6081 TGGAACTCAACCGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6082 TGGAACTCACAGAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6083 TGGAACTGTAGGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6084 TGGAACTGTTAGGACG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6085 TGGAACTTCAAAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6086 TGGAACTTCTTGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6087 TGGAGAGAGACTCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6088 TGGAGAGAGCTGGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6089 TGGAGAGGTGGAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6090 TGGAGAGTCAAGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6091 TGGAGAGTCCTTGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6092 TGGAGAGTCGCCAATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6093 TGGAGGAAGACGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6094 TGGAGGAGTAACATGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6095 TGGATCAAGAACAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6096 TGGATCAAGCAACCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6097 TGGATCAAGCACACCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6098 TGGATCAAGTTGGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6099 TGGATCACACCAATTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6100 TGGATCACACTACGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6101 TGGATCACATCCCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6102 TGGATCACATCTTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6103 TGGATCAGTACAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6104 TGGATCAGTACCGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6105 TGGATCAGTAGACGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6106 TGGATCATCCTGCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6107 TGGATGTCAGTTTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6108 TGGATGTGTTTCACAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6109 TGGATGTTCACATTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6110 TGGATGTTCCGATTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6111 TGGCGTGAGCACGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6112 TGGCGTGAGCGATGAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6113 TGGCGTGAGCGATGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6114 TGGCGTGAGCGTATGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6115 TGGCGTGGTAGGACCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6116 TGGCGTGGTTCCTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6117 TGGCGTGTCCCTATTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6118 TGGCGTGTCGCATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6119 TGGGAAGAGACGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6120 TGGGAAGAGCTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6121 TGGGAAGCATGGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6122 TGGGAAGGTTTAGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6123 TGGGAGAAGAAGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6124 TGGGAGAAGACGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6125 TGGGAGAAGCATCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6126 TGGGAGAAGTGAGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6127 TGGGAGACAAATACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6128 TGGGAGAGTAATGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6129 TGGGAGATCCGGTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6130 TGGGATTAGCGCTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6131 TGGGATTCAATAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6132 TGGGATTCAGACCATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6133 TGGGATTCAGTAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6134 TGGGATTTCTGGGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6135 TGGGATTTCTGGTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6136 TGGGCGTAGTTACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6137 TGGGCGTCAAACAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6138 TGGGCGTCAACCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6139 TGGGCGTGTCTCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6140 TGGGCTGAGTCACACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6141 TGGGCTGGTTGCTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6142 TGGGCTGTCCGGGACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6143 TGGGCTGTCCTATGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6144 TGGGCTGTCGCTTGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6145 TGGGTTATCTGACCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6146 TGGTACAAGCGACTTT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6147 TGGTACAAGGGACACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6148 TGGTACAAGGTATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6149 TGGTACACAACGATTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6150 TGGTACACAATCTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6151 TGGTACACAGTCGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6152 TGGTACAGTAAGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6153 TGGTACAGTAATCAAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6154 TGGTACAGTAGGAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6155 TGGTACAGTATCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6156 TGGTACAGTCCAGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6157 TGGTACATCGAGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6158 TGGTACATCTCTGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6159 TGGTAGTAGACCTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6160 TGGTAGTCACTTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6161 TGGTAGTGTACGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6162 TGGTAGTGTGGATACG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6163 TGGTAGTGTTAAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6164 TGGTGATAGGTTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6165 TGGTGATGTATGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6166 TGGTGATGTTATTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6167 TGGTGATGTTCGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6168 TGGTGATTCAATGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6169 TGGTGATTCGTCCATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6170 TGGTTAGAGACCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6171 TGGTTAGAGGTAAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6172 TGGTTAGCATGGCACC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6173 TGGTTAGGTATACCTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6174 TGGTTAGGTCAGGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6175 TGGTTAGGTCCGGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6176 TGGTTAGGTCGCATTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6177 TGGTTAGGTTCCCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6178 TGGTTAGGTTTCGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6179 TGGTTAGTCATGCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6180 TGGTTAGTCCGTTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6181 TGGTTAGTCTCAGTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6182 TGGTTAGTCTCCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6183 TGGTTAGTCTCTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6184 TGTAACGAGCAAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6185 TGTAACGAGCAGTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6186 TGTAACGGTATCCTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6187 TGTAACGGTTGGTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6188 TGTAAGCAGATTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6189 TGTAAGCAGTCATAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6190 TGTAAGCCACGGCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6191 TGTAAGCCACTCGATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6192 TGTAAGCGTACTCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6193 TGTAAGCGTCCAGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6194 TGTAAGCTCACATACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6195 TGTAAGCTCCCTCATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6196 TGTAAGCTCTGGGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6197 TGTACAGAGCGTCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6198 TGTACAGGTCATTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6199 TGTACAGGTCCGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6200 TGTACAGGTGCCTACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6201 TGTACAGGTGCTGCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6202 TGTACAGTCAGGTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6203 TGTACAGTCTCTATGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6204 TGTAGACAGGAAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6205 TGTAGACGTACAGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6206 TGTAGACGTCGTTATG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6207 TGTAGACGTTGTCATG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6208 TGTAGACTCCGTGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6209 TGTAGACTCCTCACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6210 TGTAGACTCTCTCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6211 TGTCAGAAGACCACGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6212 TGTCAGAAGACCTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6213 TGTCAGAAGAGCCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6214 TGTCAGAAGGCACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6215 TGTCAGAAGGTCTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6216 TGTCAGACAAGACCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6217 TGTCAGAGTTGGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6218 TGTCAGATCCGCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6219 TGTCAGATCGTAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6220 TGTCAGATCTATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6221 TGTCCACAGTCCTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6222 TGTCCACCACACCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6223 TGTCCACCATTGACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6224 TGTCCACGTCGCTTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6225 TGTCCACGTCTGTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6226 TGTCCACGTGGCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6227 TGTCCACGTGTTAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6228 TGTCCACTCCTCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6229 TGTCCACTCGCATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6230 TGTCCACTCTAGGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6231 TGTCCCAAGACGCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6232 TGTCCCAAGTGCTACT SRX23721822 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6233 TGTCCCACAAATAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6234 TGTCCCACAACGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6235 TGTCCCACACCTCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6236 TGTCCCAGTCCGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6237 TGTCCCATCGTTCATT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6238 TGTCCTGAGAAGAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6239 TGTCCTGCAGTTAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6240 TGTCCTGCATGAATAG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6241 TGTCCTGGTAGTTACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6242 TGTCCTGGTGAAAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6243 TGTCCTGTCGCTGATA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6244 TGTGAGTAGCCAAGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6245 TGTGAGTCAACCGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6246 TGTGAGTCAGAAACCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6247 TGTGAGTCAGAGCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6248 TGTGAGTCATGTGCTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6249 TGTGAGTGTACTAACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6250 TGTGAGTGTGGTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6251 TGTGAGTGTGTTGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6252 TGTGAGTTCAACACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6253 TGTGAGTTCACTGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6254 TGTGAGTTCCACTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6255 TGTGAGTTCCAGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6256 TGTGAGTTCTGAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6257 TGTGATGAGCACACAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6258 TGTGATGAGTAGAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6259 TGTGATGAGTGTTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6260 TGTGATGCAGCATGCC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6261 TGTGATGGTACGGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6262 TGTGATGGTCCAAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6263 TGTGATGTCTGTGCGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6264 TGTGCGGAGCACGATG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6265 TGTGCGGAGGTTCCGC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6266 TGTGCGGCAGCAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6267 TGTGCGGCATCTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6268 TGTGCGGGTACAGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6269 TGTGCGGGTTCGGCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6270 TGTGCGGTCTACCCAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6271 TGTGGCGAGACGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6272 TGTGGCGAGGGCCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6273 TGTGGCGAGTGCCCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6274 TGTGGCGAGTTCCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6275 TGTGGCGGTTCCGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6276 TGTGTGACAGGGATAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6277 TGTGTGACATAGTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6278 TGTGTGAGTGCAACGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6279 TGTGTGAGTTATCCAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6280 TGTTACTAGGGTTGCA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6281 TGTTACTCACGCACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6282 TGTTACTGTAACAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6283 TGTTACTGTGAAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6284 TGTTACTGTGTAGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6285 TGTTACTTCGTTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6286 TGTTACTTCTGGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6287 TGTTACTTCTTCGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6288 TGTTACTTCTTTGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6289 TGTTCATAGACGAAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6290 TGTTCATAGCATGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6291 TGTTCATAGTCTAACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6292 TGTTCATCAACTTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6293 TGTTCATCACATCCCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6294 TGTTCATGTGTTACTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6295 TGTTCATGTTAGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6296 TGTTCATTCGGTATGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6297 TGTTCATTCTACTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6298 TGTTCCGAGATTAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6299 TGTTCCGAGCATCTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6300 TGTTCCGCAGCTTCGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6301 TGTTCCGCATGGCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6302 TGTTCCGGTTATCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6303 TGTTCCGTCCTCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6304 TGTTCTAAGCCTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6305 TGTTCTAAGGGACTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6306 TGTTCTAAGGGTTAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6307 TGTTCTACAGAACCGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6308 TGTTCTACATTCCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6309 TGTTCTAGTACGACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6310 TGTTCTAGTAGTCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6311 TGTTCTAGTCCAGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6312 TGTTCTAGTGTCCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6313 TGTTCTAGTTTCGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6314 TGTTCTAGTTTGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6315 TGTTCTATCACGATCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6316 TGTTCTATCATACAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6317 TGTTCTATCCACCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6318 TGTTCTATCGTGGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6319 TGTTGAGAGAGGCCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6320 TGTTGAGAGCCATTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6321 TGTTGAGAGCGTGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6322 TGTTGAGAGGATTCCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6323 TGTTGAGGTTATAGAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6324 TGTTGAGTCCACGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6325 TGTTGGACAGCTGAAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6326 TGTTGGACATCCTCAC SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6327 TGTTTGTAGACATACA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6328 TGTTTGTCAAGTGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6329 TGTTTGTCACAGGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6330 TGTTTGTCAGAGCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6331 TGTTTGTGTCGGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6332 TGTTTGTTCACTCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6333 TGTTTGTTCCAAGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6334 TGTTTGTTCGACCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6335 TGTTTGTTCGCTGATA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6336 TTAATCCAGAGGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6337 TTAATCCAGATGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6338 TTAATCCAGTAAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6339 TTAATCCGTACAAAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6340 TTAATCCGTCTGTGCG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6341 TTAATCCGTGATGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6342 TTAATCCGTTGCTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6343 TTAATCCGTTTACTGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6344 TTAATCCTCCTATTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6345 TTAATCCTCGCCGATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6346 TTACAGGAGAGCATCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6347 TTACAGGAGTGCCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6348 TTACAGGGTAAGTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6349 TTACAGGGTATACAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6350 TTACAGGGTCGGTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6351 TTACCATCAACAACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6352 TTACCATGTCACTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6353 TTACCATTCGTGTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6354 TTACCGCCAACGATTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6355 TTACCGCCATAGCACT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6356 TTACCGCGTCATCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6357 TTACCGCTCATTGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6358 TTACCGCTCGTCCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6359 TTACGCCAGCTAATGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6360 TTACGCCCAATAGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6361 TTACGCCGTAGGTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6362 TTACGCCGTATGAGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6363 TTACGCCGTCTGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6364 TTACGCCGTTACCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6365 TTACGCCTCATACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6366 TTACGCCTCATCTGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6367 TTACGCCTCGACGATT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6368 TTACGTTAGCGAGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6369 TTACGTTAGCGATCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6370 TTACGTTAGGAAAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6371 TTACGTTAGTAATTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6372 TTACGTTCAAAGGGCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6373 TTACGTTCAACAAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6374 TTACGTTCAATGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6375 TTACGTTCATAGATCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6376 TTACGTTGTGTTTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6377 TTACGTTTCAGCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6378 TTACGTTTCCGAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6379 TTACTGTAGCATCGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6380 TTACTGTAGGGTCACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6381 TTACTGTAGTGGACGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6382 TTACTGTCAGCAGACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6383 TTACTGTCAGGCTACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6384 TTACTGTCAGTCAACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6385 TTACTGTGTCAAAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6386 TTACTGTGTGACTAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6387 TTACTGTGTGTCCGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6388 TTACTGTTCCGCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6389 TTACTGTTCCGTGGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6390 TTACTGTTCCTCAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6391 TTACTGTTCGTGGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6392 TTACTGTTCGTTAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6393 TTAGGCAAGACGCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6394 TTAGGCAAGGAATGTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6395 TTAGGCAAGGCCTTCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6396 TTAGGCACAATTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6397 TTAGGCACACAAATCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6398 TTAGGCAGTAATGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6399 TTAGGCAGTATATGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6400 TTAGGCAGTATCATGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6401 TTAGGGTAGCAAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6402 TTAGGGTCAATGCTCA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6403 TTAGGGTCACCCATAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6404 TTAGGGTCACTGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6405 TTAGGGTCAGAGGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6406 TTAGGGTCAGCGTTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6407 TTAGGGTCATCGATGT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6408 TTAGGGTGTCCGGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6409 TTAGGGTGTGTTACTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6410 TTAGGGTGTTCTCTAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6411 TTAGGGTTCACGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6412 TTAGTCTAGAGTGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6413 TTAGTCTAGCACAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6414 TTAGTCTCACGTAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6415 TTAGTCTGTGCTGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6416 TTAGTCTGTTGGGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6417 TTAGTCTGTTGGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6418 TTAGTCTTCATGGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6419 TTAGTCTTCCACACAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6420 TTAGTCTTCTGGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6421 TTATTGCAGCATGATA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6422 TTATTGCAGGAATTAC SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6423 TTATTGCCACTGTGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6424 TTATTGCGTAAGTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6425 TTATTGCGTCAACATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6426 TTCAATCAGAGAGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6427 TTCAATCAGCGATGCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6428 TTCAATCAGCGTGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6429 TTCAATCAGGTTCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6430 TTCAATCAGTTGCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6431 TTCAATCCAGGTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6432 TTCAATCCAGTTGCGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6433 TTCAATCCATAGGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6434 TTCAATCCATGGCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6435 TTCAATCTCAAATAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6436 TTCAATCTCACTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6437 TTCACCGCACAACGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6438 TTCACCGCAGGTGACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6439 TTCACCGGTCCCAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6440 TTCACCGGTCGCATGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6441 TTCACCGGTGAGGATC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6442 TTCACCGGTGGCGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6443 TTCACCGGTTCCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6444 TTCACCGTCCTATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6445 TTCACGCAGAAGCGCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6446 TTCACGCCAATACAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6447 TTCACGCGTAGTCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6448 TTCACGCGTCAGACGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6449 TTCACGCTCACTCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6450 TTCACGCTCCGTCAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6451 TTCACGCTCCTTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6452 TTCACGCTCGTTCATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6453 TTCAGGAAGCAGATAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6454 TTCAGGAAGGTCCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6455 TTCAGGACAATTTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6456 TTCAGGACATCCGTTC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6457 TTCAGGAGTAATGCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6458 TTCAGGAGTTCTAAGC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6459 TTCAGGATCCGATGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6460 TTCAGGATCGATGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6461 TTCATGTCAACGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6462 TTCATGTCACGTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6463 TTCATGTGTCCCGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6464 TTCATGTGTGAGAACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6465 TTCATGTGTGCATACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6466 TTCATGTGTGCCGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6467 TTCATGTGTTTCGGCG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6468 TTCATGTTCACTTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6469 TTCATGTTCATGGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6470 TTCATTGAGACGTCCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6471 TTCATTGAGGAGTATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6472 TTCATTGCAAACCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6473 TTCATTGCAACCGATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6474 TTCATTGCAAGACGGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6475 TTCATTGCAGGTGTGA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6476 TTCATTGCAGTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6477 TTCATTGGTACTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6478 TTCATTGGTTGTGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6479 TTCATTGTCACTGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6480 TTCATTGTCCTACTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6481 TTCATTGTCGAGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6482 TTCCAATAGATTAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6483 TTCCAATAGCTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6484 TTCCAATAGGGTACAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6485 TTCCAATCATCCGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6486 TTCCAATGTCTTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6487 TTCCAATGTGGATTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6488 TTCCAATGTTCAAACC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6489 TTCCAATTCATTACGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6490 TTCCAATTCCATCTCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6491 TTCCAATTCGATGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6492 TTCCACGCAAAGGGCT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6493 TTCCACGCAATTGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6494 TTCCACGCACAGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6495 TTCCACGGTCGACTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6496 TTCCACGTCGAACGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6497 TTCCACGTCGCTTGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6498 TTCCACGTCTATCGGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6499 TTCCACGTCTCTGACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6500 TTCCGGTAGGCACTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6501 TTCCGGTAGGGCAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6502 TTCCGGTCAGTGTATC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6503 TTCCGGTGTCCAAAGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6504 TTCCGGTGTCCATACA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6505 TTCCGGTTCCTACACC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6506 TTCCGGTTCGAAGAAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6507 TTCCGTGAGATGATTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6508 TTCCGTGAGCCGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6509 TTCCGTGCACGCTATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6510 TTCCGTGCATGTTCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6511 TTCCGTGGTAACGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6512 TTCCGTGGTATGAGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6513 TTCCGTGTCCGCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6514 TTCCGTGTCTACTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6515 TTCCGTGTCTCTCGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6516 TTCCTAAAGCTCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6517 TTCCTAAAGGATTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6518 TTCCTAACATACAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6519 TTCCTAACATGCCATA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6520 TTCCTAAGTGAATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6521 TTCCTAAGTTCATCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6522 TTCCTAATCCACCTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6523 TTCCTCTCAAGAGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6524 TTCCTCTCAATCACGT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6525 TTCCTCTCACGCTGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6526 TTCCTCTCAGGACGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6527 TTCCTCTCAGTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6528 TTCCTCTGTACTCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6529 TTCCTCTTCCTGTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6530 TTCCTTCAGCTGTACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6531 TTCCTTCCAAGATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6532 TTCCTTCCACTTTAGG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6533 TTCCTTCCATAACTCG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6534 TTCCTTCCATCGGTTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6535 TTCCTTCGTTTACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6536 TTCCTTCTCCTGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6537 TTCCTTCTCTCACGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6538 TTCGATTAGAGCCTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6539 TTCGATTAGCACTCCG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6540 TTCGATTAGTCAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6541 TTCGATTGTTGTGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6542 TTCGATTTCTCATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6543 TTCGATTTCTTGGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6544 TTCGCTGAGAATGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6545 TTCGCTGAGTATGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6546 TTCGCTGCAACCAGAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6547 TTCGCTGCAATGACCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6548 TTCGCTGCAGGCATGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6549 TTCGCTGCATCCGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6550 TTCGCTGCATGGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6551 TTCGCTGGTAGCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6552 TTCGCTGGTCGGCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6553 TTCGCTGGTTCCGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6554 TTCGGTCAGAGCTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6555 TTCGGTCCAACGACTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6556 TTCGGTCCACCAGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6557 TTCGGTCCAGTGTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6558 TTCGGTCCATTGAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6559 TTCGGTCGTCAAGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6560 TTCGGTCGTCGAAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6561 TTCGGTCGTGGAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6562 TTCTAACAGGCACAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6563 TTCTAACCAGAGCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6564 TTCTAACCAGGTGGAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6565 TTCTAACGTACAGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6566 TTCTAACGTAGACGGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6567 TTCTAACGTGGCGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6568 TTCTAACTCACAACCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6569 TTCTAACTCAGCTTGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6570 TTCTAACTCTGGGAGA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6571 TTCTAGTAGCTGCCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6572 TTCTAGTTCTGGACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6573 TTCTCTCAGCCATTCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6574 TTCTCTCAGGTATTGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6575 TTCTCTCAGTGCACTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6576 TTCTCTCCAATCTGCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6577 TTCTCTCCACACGGTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6578 TTCTCTCCAGAATGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6579 TTCTCTCGTCATGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6580 TTCTCTCGTGATATAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6581 TTCTCTCTCAGTCTTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6582 TTCTCTCTCGAACTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6583 TTCTCTCTCTCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6584 TTCTGTAAGTTAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6585 TTCTGTACACGCGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6586 TTCTGTACAGTCTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6587 TTCTGTAGTATTCCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6588 TTCTGTATCCTCAGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6589 TTCTGTATCTGCCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6590 TTCTTCCAGAACGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6591 TTCTTCCAGGATGGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6592 TTCTTCCCACAAGCCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6593 TTCTTCCCACTACGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6594 TTCTTCCCATCTCAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6595 TTCTTCCCATTCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6596 TTCTTCCGTCAATGGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6597 TTCTTCCGTCGAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6598 TTCTTGAAGACGACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6599 TTCTTGAAGAGATGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6600 TTCTTGAAGCCTAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6601 TTCTTGAAGGACCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6602 TTCTTGAAGGGTCACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6603 TTCTTGACAGCGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6604 TTCTTGAGTGAAAGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6605 TTCTTGAGTGCCCACA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6606 TTCTTGAGTTCGGTAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6607 TTCTTGATCTCGTCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6608 TTGAACGAGGCGCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6609 TTGAACGCAGAAACCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6610 TTGAACGGTCGACTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6611 TTGAACGTCGCTGACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6612 TTGAACGTCGGCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6613 TTGACCCAGATTCGAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6614 TTGACCCAGGGTATAT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6615 TTGACCCCACTTTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6616 TTGACCCCAGCTACTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6617 TTGACCCCAGTTCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6618 TTGACCCGTGCACATT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6619 TTGACCCGTTAGAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6620 TTGAGTGAGAATGTTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6621 TTGAGTGAGGGTACAC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6622 TTGAGTGGTAGAGGAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6623 TTGAGTGGTCAAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6624 TTGAGTGGTGCACATT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6625 TTGAGTGTCGGCTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6626 TTGAGTGTCTGAGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6627 TTGATGGAGGGCGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6628 TTGATGGAGTAGTCCT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6629 TTGATGGAGTCACGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6630 TTGATGGCATGGAATA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6631 TTGATGGTCAGGAAAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6632 TTGCATTAGAGGGTGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6633 TTGCATTCACTACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6634 TTGCATTCAGCCGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6635 TTGCATTCAGCGGTCT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6636 TTGCATTCAGGCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6637 TTGCATTCATCAGTGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6638 TTGCATTTCAAGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6639 TTGCATTTCCGATAGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6640 TTGCCTGCAGTTCCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6641 TTGCCTGCATGCACTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6642 TTGCCTGTCCAGTTCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6643 TTGCGTCAGGCGAACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6644 TTGCGTCGTTCACCGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6645 TTGCGTCTCTCGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6646 TTGCGTCTCTGAGAAA SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6647 TTGCTGCAGAGGTATT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6648 TTGCTGCAGATTCGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6649 TTGCTGCAGGTGCTAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6650 TTGCTGCAGTTCCGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6651 TTGCTGCCAACTTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6652 TTGCTGCCAATAACCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6653 TTGCTGCCAGATTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6654 TTGCTGCCATACCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6655 TTGCTGCCATAGGTAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6656 TTGCTGCGTCACTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6657 TTGCTGCGTCTAACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6658 TTGCTGCTCACCATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6659 TTGCTGCTCATCGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6660 TTGCTGCTCTATTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6661 TTGGATGAGAGCAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6662 TTGGATGAGGAATCGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6663 TTGGATGAGTATAACG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6664 TTGGATGAGTGTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6665 TTGGGATAGCAGGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6666 TTGGGATCACAGAGAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6667 TTGGGATCATGTTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6668 TTGGGATGTCCAACGC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6669 TTGGGATTCCCGAACG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6670 TTGGGCGAGCGCACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6671 TTGGGCGAGGCTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6672 TTGGGCGAGTGGTCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6673 TTGGGCGCAAGATCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6674 TTGGGCGCAAGTGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6675 TTGGGCGCAGCGTTTA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6676 TTGGGCGCATCACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6677 TTGGGCGGTCGGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6678 TTGGGCGTCGCTTTAT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6679 TTGGGTATCCTTCTTC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6680 TTGGGTATCGAACGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6681 TTGGTTTAGGACAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6682 TTGGTTTAGGACTTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6683 TTGGTTTCACTGTGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6684 TTGGTTTTCCATACAG SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6685 TTGGTTTTCCCATGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6686 TTGTGGACATTCTTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6687 TTGTGGAGTAGGAGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6688 TTGTGGAGTATGACAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6689 TTGTGGAGTTTCGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6690 TTGTGGATCAAACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6691 TTGTGGATCTGAGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6692 TTGTGTTAGATTAGCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6693 TTGTGTTGTCAGTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6694 TTGTGTTGTCATAACC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6695 TTGTGTTGTTTCTTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6696 TTGTGTTTCATCTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6697 TTGTTCAAGCAACCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6698 TTGTTCAAGTACTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6699 TTGTTCACAGGGTCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6700 TTGTTCAGTACCGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6701 TTGTTCAGTCACTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6702 TTGTTCATCTATCACT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6703 TTGTTCATCTGAGTCA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6704 TTGTTGTAGGGAACAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6705 TTGTTGTCAGGCGAAT SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6706 TTGTTGTCATCGTGGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6707 TTGTTGTGTCTTAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6708 TTGTTGTGTTAGGGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6709 TTGTTGTTCGCGTTTC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6710 TTGTTTGAGACCTTTG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6711 TTGTTTGCAGAGGAAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6712 TTGTTTGCAGGCACTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6713 TTGTTTGGTCCGAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6714 TTGTTTGGTGGAACAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6715 TTGTTTGTCGTAGCCG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6716 TTTACCACAGGTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6717 TTTACCAGTCAAAGTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6718 TTTACCAGTCTTAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6719 TTTACCATCGTTATCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6720 TTTACGTAGTAGAATC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6721 TTTACGTCACGTATAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6722 TTTACGTGTGGCGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6723 TTTACTGAGCGTGCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6724 TTTACTGAGTACCCTA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6725 TTTACTGCAACCACAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6726 TTTACTGCAATGAAAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6727 TTTACTGCACAGTCAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6728 TTTACTGCACTGGAAG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6729 TTTACTGCAGAAGCTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6730 TTTACTGCAGCATACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6731 TTTACTGGTAACGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6732 TTTACTGGTCCAGAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6733 TTTACTGGTGTTCGAT SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6734 TTTACTGGTTACGTAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6735 TTTACTGTCATTTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6736 TTTAGTCAGAAGCGGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6737 TTTAGTCAGTGTACAA SRX23721822 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6738 TTTAGTCCACCCAATA SRX23721822 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6739 TTTAGTCCACGGTCTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6740 TTTAGTCCATTGTAGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6741 TTTAGTCTCCATTGGA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6742 TTTATGCAGCTGGCTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6743 TTTATGCAGGGTAGCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6744 TTTATGCAGTCTTGGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6745 TTTATGCCACTAGAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6746 TTTATGCCAGGTGTTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6747 TTTATGCCAGTTAAAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6748 TTTATGCGTAATTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6749 TTTATGCTCGCCTAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6750 TTTATGCTCTCGACGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6751 TTTCACACACATGGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6752 TTTCACACATGGCTAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6753 TTTCACAGTAATCAGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6754 TTTCACAGTATGTGTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6755 TTTCACAGTTGTCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6756 TTTCACAGTTTACTTC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6757 TTTCAGTAGATGGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6758 TTTCAGTAGCCGATAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6759 TTTCAGTCAAGTTGGG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6760 TTTCAGTCAGCATTGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6761 TTTCAGTGTCTAACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6762 TTTCAGTTCGGAGTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6763 TTTCAGTTCTAAGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6764 TTTCATGAGCGCAATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6765 TTTCATGGTGATCGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6766 TTTCATGTCTGACAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6767 TTTCCTCAGCCACCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6768 TTTCCTCAGCCGCACT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6769 TTTCCTCAGGTCGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6770 TTTCCTCAGTGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6771 TTTCCTCAGTTGCCCG SRX23721822 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6772 TTTCCTCCAAATGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6773 TTTCCTCCAATAGTGA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6774 TTTCCTCGTCAACCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6775 TTTCCTCGTCAGTCGC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6776 TTTCCTCGTGTCCAAT SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6777 TTTCCTCTCCCTCATG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6778 TTTCCTCTCTTAGCAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6779 TTTCGATAGTCAGAGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6780 TTTCGATCAGCACCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6781 TTTCGATGTACCTAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6782 TTTCGATGTATTCCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6783 TTTCGATGTCCGACGT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6784 TTTCGATGTGCATTAC SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6785 TTTCGATGTGCCTACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6786 TTTCGATGTTCGGACC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6787 TTTCGATTCGGTTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6788 TTTGACTAGACACACG SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6789 TTTGACTAGGTCCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6790 TTTGACTCACCTGCGA SRX23721822 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6791 TTTGACTGTGCGACAA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6792 TTTGACTGTTAAAGTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6793 TTTGACTTCATCCTGC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6794 TTTGACTTCGCTCTAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6795 TTTGACTTCTCCCAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6796 TTTGATCAGGGAGGCA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6797 TTTGATCGTGAGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6798 TTTGATCTCGCCGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6799 TTTGGAGCATATCTCT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6800 TTTGGAGCATGGGAAC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6801 TTTGGAGGTACCGCGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6802 TTTGGAGTCCGGCAGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6803 TTTGGAGTCCTCACCA SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6804 TTTGGTTAGGCCTTCG SRX23721822 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6805 TTTGGTTCATACCACA SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6806 TTTGGTTCATTAAGCC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6807 TTTGGTTGTGCATGTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6808 TTTGGTTGTGTTACTG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6809 TTTGTTGAGTTCGCAT SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6810 TTTGTTGCACAGTGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6811 TTTGTTGCACGGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6812 TTTGTTGCAGAGTCTT SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6813 TTTGTTGCAGCTGTGC SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6814 TTTGTTGCATGACTTG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6815 TTTGTTGGTATGAGAT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6816 TTTGTTGGTCCACACG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6817 TTTGTTGGTCCTCAGG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6818 TTTGTTGGTTGCCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6819 TTTGTTGTCCTGTAAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6820 TTTGTTGTCGATCCCT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3 nan
6821 AAACCCACACTAACCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6822 AAACCCAGTGGCATCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6823 AAACCCATCATGGGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6824 AAACCCATCGCGTCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6825 AAACGAACAGTTTCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6826 AAACGAATCGCCAATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6827 AAACGAATCTTAGCCC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6828 AAACGCTAGCCTGTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6829 AAACGCTAGGATTCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6830 AAACGCTAGTGAGTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6831 AAACGCTCATGACAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6832 AAACGCTGTGGTCTCG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6833 AAACGCTGTTCGGACC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6834 AAAGAACAGAAGCTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6835 AAAGAACCACTCCCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6836 AAAGAACTCCGAAATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6837 AAAGGATGTGAGCTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6838 AAAGGATTCCACAAGT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6839 AAAGGGCAGCACTAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6840 AAAGGTAAGTATAACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6841 AAAGGTACATGTCAGT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6842 AAAGGTATCACTGTTT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6843 AAAGGTATCAGCCCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6844 AAAGGTATCTGTCGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6845 AAAGTCCCAACCAGAG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6846 AAAGTCCCAATAGGGC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6847 AAAGTCCCACTACCGG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6848 AAATGGAAGCATTGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6849 AACAAAGAGCTGAGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6850 AACAAAGTCTCATTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6851 AACAACCCATGTCGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6852 AACAAGACAATGACCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6853 AACACACAGGATATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6854 AACACACCAAATGCGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6855 AACACACTCGGAATTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6856 AACAGGGAGCGACTAG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6857 AACAGGGAGTGGCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6858 AACCAACCACTCCTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6859 AACCAACGTCACTCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6860 AACCAACGTCATCCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6861 AACCAACGTTGGGTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6862 AACCAACTCGGTATGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6863 AACCACAGTAGAGGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6864 AACCACAGTGGCCACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6865 AACCACAGTGTTAAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6866 AACCATGAGACCCGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6867 AACCATGAGTCGGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6868 AACCATGGTGACTATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6869 AACCATGTCGAGAGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6870 AACCCAAAGGATTCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6871 AACCCAAGTGATAGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6872 AACCCAATCTTTGATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6873 AACCTGACAGCACCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6874 AACCTGACAGCTCATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6875 AACCTGAGTACGCTAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6876 AACCTGATCATGTCAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6877 AACCTTTCATACAGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6878 AACCTTTGTCGCATGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6879 AACGAAAAGATTAGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6880 AACGAAACAGTCAGCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6881 AACGAAATCAAGTGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6882 AACGAAATCCACCTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6883 AACGGGATCTTGGTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6884 AACGTCAAGCTGGTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6885 AACGTCACAAGAGGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6886 AACGTCACAAGCCATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6887 AACGTCAGTTCGTGCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6888 AACGTCAGTTTCTTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6889 AACGTCATCAATCTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6890 AACGTCATCTCCAATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6891 AACTTCTAGAATAACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6892 AACTTCTTCCTGGTCT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6893 AAGAACACACAACGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6894 AAGAACAGTCTACAGT SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6895 AAGAACAGTGAGATTA SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6896 AAGAACAGTTGACGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6897 AAGACAAAGTGGACTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6898 AAGACTCAGTTCCATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6899 AAGACTCGTGGAATGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6900 AAGATAGGTAATGATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6901 AAGATAGTCCACTGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6902 AAGATAGTCGTTAGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6903 AAGCATCAGATAACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6904 AAGCATCAGCGACTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6905 AAGCATCGTTGATCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6906 AAGCATCTCGCCACTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6907 AAGCCATAGCCAGTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6908 AAGCCATGTCTTACTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6909 AAGCGAGAGACTCGAG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6910 AAGCGAGAGTCCGCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6911 AAGCGAGGTTAGAAAC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6912 AAGCGTTGTCTCGGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6913 AAGGAATGTGGTCTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6914 AAGGAATGTTAGGCCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6915 AAGGAATGTTGAGAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6916 AAGGTAAAGATGACCG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6917 AAGGTAATCGCCTTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6918 AAGTACCGTAGATTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6919 AAGTACCGTGGAAGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6920 AAGTACCGTTCGGTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6921 AAGTACCGTTTCACAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6922 AAGTCGTAGCAGTCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6923 AAGTGAAAGAAGCTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6924 AAGTGAATCCCAAGCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6925 AAGTTCGAGCGTACAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6926 AAGTTCGCATCCGGCA SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6927 AAGTTCGGTCTAACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6928 AATAGAGCATCCGGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6929 AATCACGGTGGCCTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6930 AATCACGTCCTAGCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6931 AATCGACTCCAAACCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6932 AATCGTGAGAGACAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6933 AATCGTGCAAGGGCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6934 AATCGTGCACATAGCT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6935 AATCGTGCAGGCGTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6936 AATCGTGGTAGGTAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6937 AATCGTGTCCGGTTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6938 AATCGTGTCTAGCCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6939 AATGAAGCAACCGACC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6940 AATGAAGCACTGGCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6941 AATGAAGGTAATGATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6942 AATGACCAGGTTGAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6943 AATGACCCAAACCACT SRX23721823 SRP491411 right temporal lobe - white matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6944 AATGACCCATGCCGGT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6945 AATGACCGTGCCGGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6946 AATGACCGTGCCTTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6947 AATGCCACAAACAGGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6948 AATGCCATCCAACCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6949 AATGGAAGTTGTGGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6950 AATGGAATCTTCACAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6951 AATGGCTCACACAGCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6952 AATGGCTCACGGCACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6953 AATGGCTTCGGCATTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6954 AATTCCTAGAGTATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6955 AATTCCTGTATTGACC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6956 ACAAAGACAAACCATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6957 ACAAAGACAGCTACCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6958 ACAAAGAGTGACGTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6959 ACAAAGATCGTAGTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6960 ACAACCACATAGAGGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6961 ACAACCACATTACTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6962 ACAACCATCCGATCGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6963 ACAACCATCTGGACTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6964 ACAAGCTAGTTGCTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6965 ACAAGCTTCCCTTGTG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6966 ACACAGTTCCATTTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6967 ACACAGTTCCCTTTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6968 ACACAGTTCCGTACGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6969 ACACCAAAGGTGCGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6970 ACACCAATCGCCCAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6971 ACACGCGAGGACGCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6972 ACACGCGCACGCGCAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6973 ACACGCGGTCTTTCAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6974 ACACGCGTCGCATTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6975 ACACTGAAGGCGTTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6976 ACACTGAGTTTACACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6977 ACAGAAAAGGAGAATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6978 ACAGCCGAGACATATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6979 ACAGCCGCACTAACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6980 ACAGCCGCAGTTAGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6981 ACAGCCGGTCGCTTGG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6982 ACAGCCGTCAGCACCG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6983 ACAGGGAGTACCCGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6984 ACAGGGAGTGTCCCTT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6985 ACAGGGAGTTCCTAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6986 ACATCCCAGACGACGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6987 ACATCGAAGATGCTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6988 ACATCGAAGCAATAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6989 ACATCGACAGCAGTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6990 ACATGCATCGCCTAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6991 ACATGCATCGTAATGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6992 ACATTTCCACGACAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6993 ACATTTCCACTACAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6994 ACCAAACAGAGTGAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6995 ACCAAACCAGCGGTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6996 ACCAAACGTTCTAAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6997 ACCAAACTCGGTATGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6998 ACCAACACATACATCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
6999 ACCACAAGTGGGTTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7000 ACCATTTGTGGGTTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7001 ACCATTTTCCGCGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7002 ACCCAAACATCGCTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7003 ACCCTCACATATCTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7004 ACCCTTGCAATAGTAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7005 ACCGTTCAGCACAAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7006 ACCGTTCCAGTAACCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7007 ACCTGAACAAGACCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7008 ACCTGAACATCAGCGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7009 ACCTGAATCATACAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7010 ACCTGTCAGAAACCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7011 ACCTGTCCAGGTACGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7012 ACCTGTCGTAAGCTCT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7013 ACCTGTCTCACCTTAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7014 ACGATCAGTCATCCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7015 ACGATCATCCACAGCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7016 ACGATGTTCCGGACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7017 ACGCACGCAAAGTGTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7018 ACGCACGCAAGAATAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7019 ACGCACGGTCCACGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7020 ACGCACGGTTGCATCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7021 ACGCACGTCAGCTCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7022 ACGGAAGGTATTTCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7023 ACGGAAGGTGTAGTGG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7024 ACGGGTCAGCGTATAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7025 ACGGGTCCACGCTATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7026 ACGGGTCCACTTGAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7027 ACGGGTCCAGAATCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7028 ACGGGTCCAGCTGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7029 ACGGGTCGTTCTCTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7030 ACGGGTCTCCTTATGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7031 ACGGTCGGTGTTGACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7032 ACGGTCGGTTCAAGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7033 ACGGTTAGTCAAGCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7034 ACGTAACAGCCTAACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7035 ACGTAACTCGAGCACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7036 ACGTACACAGGTACGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7037 ACGTAGTTCAAGCGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7038 ACGTCCTAGCTCCGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7039 ACGTCCTAGGCTAACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7040 ACGTCCTCAGGTTTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7041 ACGTTCCAGGCTGGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7042 ACGTTCCCAAACGAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7043 ACGTTCCCATGTACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7044 ACGTTCCGTTGAGGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7045 ACTACGAAGGATTCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7046 ACTACGACACACGGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7047 ACTACGATCGTTGTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7048 ACTATCTGTTTACCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7049 ACTATGGCAAGTGATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7050 ACTATGGCACATTGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7051 ACTATGGGTATCGCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7052 ACTATGGTCAATCCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7053 ACTCCCACAACAAGTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7054 ACTCCCAGTTGCAAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7055 ACTCCCATCGCAATGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7056 ACTCTCGGTAGCTGCC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7057 ACTCTCGTCAAACCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7058 ACTCTCGTCACCTTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7059 ACTCTCGTCATGCCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7060 ACTCTCGTCGTGGGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7061 ACTGATGAGGGATCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7062 ACTGATGCAGACATCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7063 ACTGCAAGTAAGCTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7064 ACTGCAATCACAGTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7065 ACTGTCCGTTGTTGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7066 ACTGTCCTCGCTCCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7067 ACTGTGAGTGCAATAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7068 ACTTAGGAGACGTCCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7069 ACTTAGGCACTTCAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7070 ACTTAGGGTAGCGTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7071 ACTTAGGTCGAGTGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7072 ACTTAGGTCTCGACCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7073 ACTTATCAGGCTCACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7074 ACTTATCGTATTTCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7075 ACTTATCGTCAACCTA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7076 ACTTATCGTGGCTACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7077 ACTTATCGTTTGGAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7078 ACTTATCTCAAGCGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7079 ACTTCCGGTCTTCAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7080 ACTTCCGTCAGCGCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7081 ACTTCGCTCCTTTAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7082 ACTTTCAAGGTGCGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7083 ACTTTGTCAATCCAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7084 ACTTTGTCACAAGTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7085 ACTTTGTCATCACAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7086 ACTTTGTGTATCAGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7087 ACTTTGTGTTAGGAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7088 ACTTTGTTCCTTCTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7089 AGAAATGAGAGTTCGG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7090 AGAAATGAGTCAATCC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7091 AGAAATGCAGAATGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7092 AGAAATGCAGCCATTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7093 AGAACAATCGGCTGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7094 AGAAGCGCAATCTCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7095 AGAAGCGCATCATTGG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7096 AGAAGCGGTCGTCATA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7097 AGAAGCGGTGTAGTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7098 AGAAGTACAGATAAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7099 AGAAGTAGTCTTCATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7100 AGACAAACAAGAGGCT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7101 AGACACTAGATTTGCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7102 AGACACTCATCTATCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7103 AGACACTGTCACCACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7104 AGACACTGTCCAATCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7105 AGACACTTCATGGAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7106 AGACAGGCAGTGACCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7107 AGACAGGGTTAGGAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7108 AGACAGGTCACCCTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7109 AGACAGGTCACCGGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7110 AGACCATAGGCGATAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7111 AGACCATGTAGGAAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7112 AGACCATTCCGCTTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7113 AGACCCGGTCGCGGTT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7114 AGACCCGGTGTTACTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7115 AGACCCGTCCATTCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7116 AGACTCAAGAGCAGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7117 AGACTCAAGCAAATCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7118 AGACTCAAGGAATCGC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7119 AGACTCACAACGGGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7120 AGACTCACATCGAGCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7121 AGAGAATAGACTTCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7122 AGAGAATAGAGTATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7123 AGAGAATAGGTGGTTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7124 AGAGAATGTTGCATTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7125 AGAGAATTCCCAGCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7126 AGAGAATTCGTCCTCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7127 AGAGAATTCTCTATGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7128 AGAGAGCCAAGCGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7129 AGAGCAGAGAAGTCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7130 AGAGCAGGTTGGGCCT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7131 AGAGCCCGTTAAGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7132 AGATAGAAGAGCACTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7133 AGATAGAAGCCTGGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7134 AGATAGACACAGTCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7135 AGATAGATCAGACTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7136 AGATCCAAGTATAGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7137 AGATCCAAGTCTGGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7138 AGATCCAGTATCAGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7139 AGATCCATCTTTGATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7140 AGATCGTAGTGACCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7141 AGATCGTGTGATACAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7142 AGATGAAAGTCATGGG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7143 AGATGAATCGACATTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7144 AGATGCTAGCACCGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7145 AGATGCTAGCAGCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7146 AGATGCTAGCGCCATC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7147 AGATGCTCATTACTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7148 AGATGCTTCACACCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7149 AGCATCACACCAACAT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7150 AGCATCAGTCCGTACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7151 AGCCAATGTAATGTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7152 AGCCAATGTGACTGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7153 AGCCAATTCAACTGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7154 AGCCAATTCTACGCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7155 AGCCACGGTCTGTTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7156 AGCCACGTCAGCTGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7157 AGCCAGCAGATTTGCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7158 AGCGATTAGGCCTTGC SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7159 AGCGATTAGTAAATGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7160 AGCGCCAGTCGCGTTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7161 AGCGCTGCAACCGATT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7162 AGCGTATAGGTCGACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7163 AGCGTATCACCAAATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7164 AGCGTATCATAGGCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7165 AGCGTATGTCTTAGTG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7166 AGCTACACAGGCTCTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7167 AGCTACATCATGAGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7168 AGCTACATCATTATCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7169 AGCTCAAAGCTCATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7170 AGCTCAAAGGTTGACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7171 AGCTCAACACAGTCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7172 AGCTCAAGTAGTTAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7173 AGCTCAAGTCATCCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7174 AGCTTCCCACTAGAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7175 AGCTTCCGTAGCGATG SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7176 AGCTTCCTCAATCCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7177 AGGAATAAGGCTTAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7178 AGGAATAAGGGAGGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7179 AGGACGAGTACCCGCA SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7180 AGGACTTCACGCCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7181 AGGACTTGTTGTATGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7182 AGGACTTTCAGCTCTC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7183 AGGACTTTCCAGCTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7184 AGGAGGTGTCAGTCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7185 AGGAGGTTCCGATCTC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7186 AGGATAAAGGCACTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7187 AGGATAAGTAGATCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7188 AGGATAAGTGGCTTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7189 AGGATCTAGCTTAGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7190 AGGATCTCACACAGAG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7191 AGGATCTTCAACTGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7192 AGGCATTAGACGTCCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7193 AGGCATTGTCATGGCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7194 AGGCATTTCACCGGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7195 AGGCCACAGGCCTGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7196 AGGCCACCAAGCGAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7197 AGGCCACCAAGGCAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7198 AGGCCACCATTAGGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7199 AGGCTGCAGCCACTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7200 AGGCTGCAGGCAGGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7201 AGGCTGCGTGCTGTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7202 AGGGAGTAGTGGCAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7203 AGGGAGTGTCGCATCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7204 AGGGAGTGTCTTGCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7205 AGGGAGTGTTCGGGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7206 AGGGAGTTCATTCGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7207 AGGGCCTAGGGATCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7208 AGGGCCTCACAAGTGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7209 AGGGCTCAGAGGATCC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7210 AGGGCTCCAACGTTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7211 AGGGCTCTCGGCACTG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7212 AGGGTCCTCTCAGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7213 AGGGTGACACCTAAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7214 AGGGTGAGTTAGAGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7215 AGGGTTTAGAGAAGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7216 AGGGTTTAGTCAGAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7217 AGGGTTTGTGATACCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7218 AGGGTTTTCCGACATA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7219 AGGTAGGGTAACTGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7220 AGGTAGGGTGCATGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7221 AGGTCATAGACAACAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7222 AGGTCATAGTGGGAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7223 AGGTCTACAAAGCGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7224 AGGTCTATCAGAACCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7225 AGGTCTATCCTCTAGC SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7226 AGGTGTTAGGGACAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7227 AGGTGTTCAACATACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7228 AGGTGTTCACAAATAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7229 AGGTGTTGTTGCCAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7230 AGGTTACCACCCAACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7231 AGGTTGTTCGCCTAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7232 AGGTTGTTCGGACTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7233 AGTAACCAGCTCTTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7234 AGTAACCAGGACAGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7235 AGTAACCGTCTGATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7236 AGTACCAAGATACATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7237 AGTACCAAGCAGAAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7238 AGTACCACATGAAGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7239 AGTACCAGTCAGACGA SRX23721823 SRP491411 right temporal lobe - white matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7240 AGTACCAGTCCACGCA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7241 AGTACCATCCGTAATG SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7242 AGTACCATCTCCGTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7243 AGTAGTCTCAAGTGGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7244 AGTAGTCTCCAATCCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7245 AGTCAACCACCAGTAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7246 AGTCAACGTTTCGTAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7247 AGTCAACTCCCTCTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7248 AGTCAACTCCGCAGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7249 AGTCAACTCTGCACCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7250 AGTCACAAGTTGCATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7251 AGTCACACATCCGTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7252 AGTCATGAGAGGGCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7253 AGTCATGAGTTGCTCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7254 AGTCTCCTCTCGGTAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7255 AGTGACTAGCAGCCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7256 AGTGACTCAAAGGCTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7257 AGTGACTCACACAGCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7258 AGTGACTTCTTCTGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7259 AGTGATCTCGTAGAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7260 AGTGATCTCTCGTGGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7261 AGTGCCGAGCCTGGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7262 AGTGCCGAGGAGTACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7263 AGTGCCGGTCAATCTG SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7264 AGTGCCGTCCCGAATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7265 AGTGTTGCAATTCTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7266 AGTGTTGCATTCTCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7267 AGTGTTGGTGCTTCAA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7268 AGTGTTGGTTCTCTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7269 AGTTAGCCACGCACCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7270 AGTTAGCGTATAGCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7271 AGTTAGCTCAGAACCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7272 AGTTCCCCATTGACTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7273 AGTTCCCTCGTCCTCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7274 AGTTCGACAGCCCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7275 AGTTCGATCGCATTAG SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7276 ATACCTTGTATCACCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7277 ATACCTTTCCATAAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7278 ATACTTCAGCTTCATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7279 ATACTTCTCTTTCCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7280 ATAGACCGTCGGATTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7281 ATAGACCGTGTGTACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7282 ATAGACCTCAACGCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7283 ATAGACCTCGGTCTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7284 ATAGGCTCATACACCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7285 ATATCCTGTGGACCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7286 ATATCCTTCGAAGGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7287 ATCACGAAGAGTATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7288 ATCACGAAGTGCACAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7289 ATCACGAGTTGCAACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7290 ATCACTTAGCGTGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7291 ATCACTTGTGAGCGAT SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7292 ATCAGGTAGACCAGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7293 ATCAGGTCACGCGCTA SRX23721823 SRP491411 right temporal lobe - white matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7294 ATCAGGTGTATCAGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7295 ATCAGGTTCAAGGACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7296 ATCAGGTTCTGGGCCA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7297 ATCCACCGTCATCGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7298 ATCCATTAGGGAGTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7299 ATCCATTCACGACTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7300 ATCCCTGAGAGGCTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7301 ATCCCTGCAGTGGCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7302 ATCCCTGTCGCTGATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7303 ATCCGTCAGCTGGTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7304 ATCCGTCCATCGCCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7305 ATCCGTCCATGGGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7306 ATCCGTCTCCTTCTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7307 ATCCTATAGGATGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7308 ATCCTATGTAGTTAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7309 ATCCTATGTCGTGGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7310 ATCGATGAGCAGCGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7311 ATCGCCTAGACTTAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7312 ATCGCCTAGGGCAATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7313 ATCGCCTTCCTCAGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7314 ATCGCCTTCGCAACAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7315 ATCGCCTTCGCCAACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7316 ATCGCCTTCTGAGAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7317 ATCGGATAGGTGCTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7318 ATCGGATGTTAAACAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7319 ATCGGATTCAGCTGAT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7320 ATCGTAGCAAGTGCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7321 ATCGTAGTCGACGTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7322 ATCGTCCGTGCATGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7323 ATCGTCCTCTACAGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7324 ATCGTCCTCTGATTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7325 ATCGTGAAGCAACTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7326 ATCGTGAAGCGAGAAA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7327 ATCTCTAAGTGGATTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7328 ATCTCTAGTATCGAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7329 ATCTTCACAACCACAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7330 ATCTTCATCGATTGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7331 ATGACCAAGGAAGTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7332 ATGACCACACACTTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7333 ATGACCATCGGAAACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7334 ATGAGGGAGGGAGGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7335 ATGAGGGCAGACCTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7336 ATGAGGGTCCCTATTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7337 ATGAGTCAGATGAACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7338 ATGAGTCGTCGGTGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7339 ATGAGTCTCGATACAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7340 ATGAGTCTCGCCACTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7341 ATGAGTCTCTCTCGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7342 ATGATCGAGCAGAAAG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7343 ATGATCGCATGCCGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7344 ATGCATGAGAGAATCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7345 ATGCATGGTCTAATCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7346 ATGCCTCCAAGCGAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7347 ATGCCTCTCCTTGACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7348 ATGCCTCTCGATTCCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7349 ATGCGATAGGTTATAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7350 ATGGAGGAGCTAAATG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7351 ATGGAGGTCTTGAGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7352 ATGGATCGTCGTAATC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7353 ATGGATCTCTGCAGCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7354 ATGGGTTCAACCTAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7355 ATGGGTTGTAACTAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7356 ATGGGTTTCCACACCT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7357 ATGGTTGTCCTACCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7358 ATGTCCCAGTAGGTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7359 ATGTCCCGTAGGACTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7360 ATGTCCCTCCGGCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7361 ATGTCTTAGCAGCAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7362 ATGTCTTCACATCCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7363 ATTACCTAGTGCAGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7364 ATTACCTCAAGTCGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7365 ATTACCTGTTCCTAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7366 ATTACTCAGGCCTTCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7367 ATTACTCAGGGAGAAT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7368 ATTACTCTCATTCGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7369 ATTATCCAGACTACCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7370 ATTATCCCAATCTCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7371 ATTATCCGTCATACCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7372 ATTATCCGTGCATTTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7373 ATTATCCTCCTACCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7374 ATTCACTAGCATGAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7375 ATTCACTCAGTTCCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7376 ATTCAGGAGTGCTACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7377 ATTCAGGCACGACTAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7378 ATTCAGGGTCAACACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7379 ATTCAGGGTCAGTCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7380 ATTCAGGGTTAGGCCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7381 ATTCATCCAGTGTATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7382 ATTCATCCATTCTCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7383 ATTCATCGTGCATACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7384 ATTCATCGTGCATCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7385 ATTCCATAGGAATCGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7386 ATTCCATTCCATCTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7387 ATTCCATTCTCCGAAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7388 ATTCCATTCTTTCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7389 ATTCCCGCAAAGCAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7390 ATTCCCGGTTGCGTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7391 ATTCCCGTCGAGTCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7392 ATTCCTACAATTCACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7393 ATTCCTAGTTTCTTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7394 ATTCCTATCAATCTTC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7395 ATTCCTATCTCTTAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7396 ATTCGTTCAATCACGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7397 ATTCGTTGTATGTGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7398 ATTCGTTTCACAACCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7399 ATTCTACAGAGCCGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7400 ATTCTACCACTATCCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7401 ATTCTACGTATACAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7402 ATTCTACGTCCAAATC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7403 ATTCTACTCTGTGCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7404 ATTCTTGAGAAATCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7405 ATTCTTGCAATTGCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7406 ATTCTTGCAGCGACCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7407 ATTGGGTCACGCTTAA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7408 ATTGGGTTCAGGGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7409 ATTGTTCAGTTGGACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7410 ATTGTTCCAACGGCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7411 ATTGTTCGTCCGTTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7412 ATTGTTCGTGGTCCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7413 ATTGTTCTCGCAATTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7414 ATTTACCGTCCTTTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7415 ATTTCACAGGACGCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7416 ATTTCACGTCCTCAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7417 ATTTCACTCAAACCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7418 ATTTCACTCGGCTCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7419 ATTTCTGAGGTTGACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7420 ATTTCTGGTTCTCGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7421 ATTTCTGTCCACTGGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7422 CAAAGAACAAAGGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7423 CAAAGAACACAAAGTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7424 CAAAGAATCAGACAAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7425 CAAAGAATCAGGGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7426 CAACAACGTACACTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7427 CAACAACTCTCCGAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7428 CAACAGTGTACAGTAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7429 CAACAGTTCAGTCCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7430 CAACCAAGTTTCCAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7431 CAACCAATCAGTCCGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7432 CAACCAATCGGAGTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7433 CAACCTCCATGTGCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7434 CAACCTCTCGGAAGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7435 CAACGATAGTTTCGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7436 CAACGGCTCGACACTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7437 CAAGACTAGAAATGGG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7438 CAAGACTCACCGTGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7439 CAAGACTTCCTTGAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7440 CAAGAGGAGAGGATCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7441 CAAGAGGCAACGCATT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7442 CAAGAGGGTCTTCGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7443 CAAGAGGTCGGCCCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7444 CAAGCTACACGTACAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7445 CAAGCTATCCTAACAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7446 CAAGCTATCGCTATTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7447 CAAGGGACAATTGGTC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7448 CAAGGGAGTGTCGATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7449 CAAGGGATCAAGTGGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7450 CAAGGGATCACCACAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7451 CAATACGAGCGATGAC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7452 CAATACGGTACAATAG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7453 CAATACGGTCCAGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7454 CAATCGACAGACCATT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7455 CAATCGAGTTGCGAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7456 CAATGACAGTGATAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7457 CAATGACCAGGAGACT SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7458 CAATGACTCTATTGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7459 CAATTTCCATCGCCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7460 CAATTTCTCGAAATCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7461 CACAACAAGACGAAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7462 CACAACATCTCGTGGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7463 CACACAACACCAGGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7464 CACACAAGTTCAGGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7465 CACACAATCAAGTCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7466 CACACAATCATACAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7467 CACAGATAGGGCAAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7468 CACAGATTCAAGGACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7469 CACATGAAGGGTCTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7470 CACATGATCCGGCTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7471 CACCAAAAGAGTCGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7472 CACCAAAAGTTGCATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7473 CACCAAACAAGTTTGC SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7474 CACCGTTTCGTGGACC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7475 CACGGGTCAACCGTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7476 CACGGGTCATCCCACT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7477 CACGGGTCATTATGCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7478 CACGTGGCAATAACCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7479 CACGTGGTCAAGCCGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7480 CACGTGGTCTACCCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7481 CACGTTCAGTAGCATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7482 CACTAAGAGCATCAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7483 CACTAAGCATACATCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7484 CACTAAGCATGACAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7485 CACTAAGGTGGCGCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7486 CACTGAACACTTCCTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7487 CACTGAATCGATGCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7488 CACTGGGAGAGTCAGC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7489 CACTGGGAGTTGCATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7490 CACTGGGCAAATACGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7491 CACTGGGCACGTCTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7492 CACTGTCCAGGATCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7493 CACTGTCCATCTGGGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7494 CACTTCGCAAGAGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7495 CACTTCGTCCACCTCA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7496 CAGAGCCTCGGCAGTC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7497 CAGATACGTTGACTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7498 CAGATACTCTAGCCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7499 CAGATCACACAAGTGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7500 CAGATCATCGGTCAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7501 CAGCAATAGCAACAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7502 CAGCAATGTCGTACAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7503 CAGCAATGTTAAACAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7504 CAGCACGCACTCCGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7505 CAGCACGTCAGTGGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7506 CAGCAGCGTGACATCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7507 CAGCAGCTCGCTAATG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7508 CAGCCAGCAGTAGAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7509 CAGCCAGGTCCGGTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7510 CAGCCAGTCCCTTGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7511 CAGCGTGCAGTTCACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7512 CAGCGTGGTACAGTAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7513 CAGCGTGGTCTCTCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7514 CAGGCCAAGGGAGGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7515 CAGGCCACAAGAGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7516 CAGGCCACATAACGGG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7517 CAGGCCATCAAGTTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7518 CAGGCCATCAATCTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7519 CAGGCCATCGTGTTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7520 CAGGCCATCGTTATCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7521 CAGGGCTAGCTCGGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7522 CAGGGCTTCTGAACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7523 CAGGTATAGCCTCGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7524 CAGGTATTCGAACCAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7525 CAGTGCGCACCAGCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7526 CAGTGCGGTTAAGACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7527 CAGTTCCAGTAGGATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7528 CAGTTCCTCAAAGAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7529 CAGTTCCTCACGGGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7530 CATAAGCTCGCAGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7531 CATACAGAGAGTCAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7532 CATACAGAGCGCTGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7533 CATACAGAGTCTAACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7534 CATACAGCAATTGGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7535 CATACAGGTGTGAATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7536 CATACAGTCACTTTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7537 CATACAGTCAGTGGGA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7538 CATACAGTCTGGAAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7539 CATACCCAGCAAACAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7540 CATACCCAGCACAAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7541 CATACCCAGCGATGGT SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7542 CATACCCCACGCTGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7543 CATACCCGTGACCGAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7544 CATACTTGTTCGGCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7545 CATACTTTCGGACAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7546 CATAGACCAGGTCAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7547 CATAGACCATGACGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7548 CATAGACGTACGAAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7549 CATAGACTCATGGCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7550 CATAGACTCCAGCAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7551 CATAGACTCGGCTGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7552 CATAGACTCTCTCCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7553 CATCAAGCAACGCCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7554 CATCAAGCACAGCTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7555 CATCAAGTCAGGAAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7556 CATCAAGTCCGTAATG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7557 CATCCACAGTAGACCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7558 CATCCACCACTGCTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7559 CATCCACGTTCCGCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7560 CATCCACTCCCTTGGT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7561 CATCCCAAGTACTGGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7562 CATCCCACACGACGCT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7563 CATCCGTCATTGAGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7564 CATCCGTGTCTGTGGC SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7565 CATCCGTGTTCGAGCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7566 CATCGCTTCTTGCAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7567 CATCGGGCACCGCTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7568 CATCGGGGTCGATGCC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7569 CATCGGGTCGAGTGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7570 CATCGGGTCTGCTTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7571 CATCGTCAGCGTCGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7572 CATCGTCGTCTTGCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7573 CATCGTCTCATTTACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7574 CATGAGTAGCCTCATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7575 CATGAGTTCGTGCGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7576 CATGCAACACAAAGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7577 CATGCAAGTAACAGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7578 CATGCCTAGCGAAACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7579 CATGCCTAGGGCTAAC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7580 CATGCCTCAATTGCCA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7581 CATGCCTGTGACGTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7582 CATGCGGAGCAGTACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7583 CATGCGGAGTACAGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7584 CATGCGGAGTTCCGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7585 CATGCGGGTCGCAGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7586 CATGCTCAGCTAAATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7587 CATGCTCCAATCAAGA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7588 CATGCTCCAGGTTCCG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7589 CATGCTCGTACGATCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7590 CATGCTCGTAGACGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7591 CATGCTCTCGAGATGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7592 CATGGATCAAGTCGTT SRX23721823 SRP491411 right temporal lobe - white matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7593 CATGGATCAGGCGATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7594 CATGGATGTCCTGAAT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7595 CATGGATGTGTTAAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7596 CATTCATAGGGACAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7597 CATTCCGAGCAACTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7598 CATTCCGCACATCCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7599 CATTCCGGTATTTCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7600 CATTCCGGTCACAATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7601 CATTCCGGTCCGAAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7602 CATTCCGTCAATGCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7603 CATTCTAAGAACCCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7604 CATTCTAAGACTCCGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7605 CATTCTAGTCGGTAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7606 CATTCTATCTCGTCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7607 CATTGAGAGGCCCGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7608 CATTGAGTCACTCGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7609 CATTGAGTCTTAAGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7610 CATTGAGTCTTGGAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7611 CATTGAGTCTTGGTCC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7612 CATTGCCAGGAGCTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7613 CATTGCCGTTCAGTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7614 CATTGCCGTTCCCAAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7615 CATTGCCTCCTGTAGA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7616 CATTGTTAGAAACACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7617 CATTGTTGTTCCGCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7618 CATTGTTTCCTGATAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7619 CATTGTTTCGAACGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7620 CATTTCAGTACTAGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7621 CATTTCAGTCGTAATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7622 CCAATGAAGAAACACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7623 CCAATGAGTCGGTACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7624 CCAATGAGTGACGTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7625 CCAATGATCAAGCCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7626 CCAATTTAGACGCATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7627 CCAATTTAGGACTTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7628 CCAATTTCACCCGTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7629 CCAATTTGTCGTTTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7630 CCAATTTGTTGGTGTT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7631 CCACAAAAGCTACAAA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7632 CCACAAAAGGGTAATT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7633 CCACAAATCTTTGCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7634 CCACCATGTGCTATTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7635 CCACGAGAGGGCAGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7636 CCACGAGCACTGTGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7637 CCACGAGGTGGACTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7638 CCACGTTTCTATCGCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7639 CCACTTGAGCAGGCAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7640 CCACTTGAGGTCCCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7641 CCACTTGAGTAGATCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7642 CCATAAGTCGCGCTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7643 CCATCACAGCGAAACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7644 CCATCACCACTGGATT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7645 CCCAACTCACATGGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7646 CCCAACTCATGGTGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7647 CCCAACTGTAGCGCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7648 CCCAACTTCCACGTGG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7649 CCCAACTTCGTAGGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7650 CCCATTGCAACGTAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7651 CCCATTGCATTGAAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7652 CCCGAAGAGAGGTCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7653 CCCGAAGAGTGCCAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7654 CCCGAAGCAATACCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7655 CCCGAAGGTACCATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7656 CCCGGAAGTCATCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7657 CCCGGAAGTGATACCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7658 CCCTAACAGTCGAGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7659 CCCTAACCAAGGACAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7660 CCCTAACGTGCTTCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7661 CCCTAACTCAAATGCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7662 CCCTCAACACGCGGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7663 CCCTCAATCGAGCCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7664 CCCTCAATCTAGTGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7665 CCCTCAATCTCCCAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7666 CCCTCTCAGGGACACT SRX23721823 SRP491411 right temporal lobe - white matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7667 CCCTCTCAGTTGCCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7668 CCCTCTCTCGTTCATT SRX23721823 SRP491411 right temporal lobe - white matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7669 CCCTCTCTCGTTCTAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7670 CCCTGATCAGATTAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7671 CCCTTAGAGATGAACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7672 CCCTTAGGTAGTGATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7673 CCCTTAGGTTGCTCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7674 CCCTTAGTCGCACGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7675 CCGATCTAGATCACCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7676 CCGATCTCAATACAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7677 CCGATCTGTTCTCCAC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7678 CCGATGGTCTAGTCAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7679 CCGATGGTCTTGGAAC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7680 CCGCAAGCAAGATCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7681 CCGCAAGTCCTGATAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7682 CCGGACAAGCTGAAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7683 CCGGACACAAGAATGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7684 CCGGGTAAGCAGGCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7685 CCGGTAGAGACCGTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7686 CCGGTAGCAATTGGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7687 CCGGTGAAGACGAAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7688 CCGGTGACAGCTCGGT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7689 CCGGTGAGTCTGTGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7690 CCGGTGAGTTCGGCTG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7691 CCGTAGGAGGTAAAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7692 CCGTAGGCATCGTGCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7693 CCGTAGGGTCCTCAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7694 CCGTAGGGTTAAACAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7695 CCGTGAGAGAGCAGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7696 CCGTGAGAGTGGAATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7697 CCGTGAGGTGATATAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7698 CCGTGAGGTTTGGAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7699 CCGTTCACAAGGCGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7700 CCGTTCACACCAGCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7701 CCGTTCATCGACATTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7702 CCTAACCAGGCCCAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7703 CCTAACCCACGGATCC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7704 CCTAACCCATATCTGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7705 CCTAACCGTGTAGGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7706 CCTAACCGTTGTCAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7707 CCTAACCTCATACGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7708 CCTAAGAGTCCACAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7709 CCTAAGAGTCGTATGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7710 CCTAAGATCAAACCTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7711 CCTATCGCAATAGTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7712 CCTATCGTCCCTAGGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7713 CCTCAACGTCCCAAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7714 CCTCACAAGTATAGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7715 CCTCACAAGTTCTACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7716 CCTCACACACGGAAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7717 CCTCAGTAGATGGTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7718 CCTCAGTGTACCCAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7719 CCTCATGGTTGTTGAC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7720 CCTCATGTCTAAGAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7721 CCTCCAAAGCGTATAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7722 CCTCCAACAGGTTCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7723 CCTCCAAGTAGCGTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7724 CCTCCTCCAATACGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7725 CCTCCTCGTCGTTCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7726 CCTCCTCTCATTTGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7727 CCTCTAGAGGATTTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7728 CCTCTAGGTCGTCTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7729 CCTCTAGTCCATTTGT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7730 CCTCTAGTCGAGCCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7731 CCTCTCCGTTCTTGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7732 CCTGCATAGACTGTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7733 CCTGCATAGTAGTCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7734 CCTGCATAGTGGTTGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7735 CCTGCATAGTGTTCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7736 CCTGTTGAGAAAGCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7737 CCTGTTGCACCACATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7738 CCTGTTGTCGATCCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7739 CCTTCAGAGCGCACAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7740 CCTTCAGTCTACGCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7741 CCTTCAGTCTGCCTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7742 CCTTGTGAGAGCCGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7743 CCTTGTGAGTCGAAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7744 CCTTGTGCAATCGCAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7745 CCTTGTGTCACTTGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7746 CCTTGTGTCAGTGTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7747 CCTTGTGTCTCACGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7748 CCTTTGGAGTGATAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7749 CCTTTGGAGTTGGCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7750 CCTTTGGCAAACCGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7751 CCTTTGGCAATCGTCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7752 CCTTTGGCACAGTCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7753 CCTTTGGCATATGAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7754 CCTTTGGTCATAGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7755 CGAAGGAGTGCAACAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7756 CGAAGGATCGAGAGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7757 CGAAGTTCATCTAACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7758 CGAAGTTGTAACATAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7759 CGAATTGCAGACACAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7760 CGAATTGCAGGATCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7761 CGAATTGGTATTGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7762 CGAATTGGTCTGCAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7763 CGAATTGTCAAGAGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7764 CGAATTGTCCATACTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7765 CGACAGCAGATGCTAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7766 CGACAGCCAGTGTACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7767 CGACAGCTCACTACTT SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7768 CGACAGCTCCTGTAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7769 CGAGAAGGTATCTTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7770 CGAGAAGTCGCCGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7771 CGAGGCTCAGCTGTTA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7772 CGAGTGCCAAAGGCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7773 CGAGTGCTCGCTAGCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7774 CGAGTTAAGAATCTAG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7775 CGAGTTAGTCGTATTG SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7776 CGAGTTAGTGTTCCAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7777 CGAGTTAGTTTCGGCG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7778 CGAGTTAGTTTGGGTT SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7779 CGAGTTATCACAAGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7780 CGAGTTATCATCTCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7781 CGATCGGAGAGGACTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7782 CGATCGGCAGGAGGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7783 CGATGCGTCACTTGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7784 CGATGGCTCAAACGTC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7785 CGCAGGTAGAACCCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7786 CGCAGGTAGCGAGTAC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7787 CGCAGGTAGTTCAACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7788 CGCAGGTTCGTAACCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7789 CGCATAAAGGGAGATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7790 CGCATGGCATCTCGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7791 CGCCAGAAGACACACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7792 CGCCAGACAACACGTT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7793 CGCCAGACAATCGTCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7794 CGCCATTAGGTAGGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7795 CGCCATTCACACACGC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7796 CGCCATTGTGTGTGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7797 CGCCATTGTTGGGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7798 CGGAACCCAAATACGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7799 CGGAACCGTGCCCAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7800 CGGAATTCAAGAGGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7801 CGGAATTCAGTCCCGA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7802 CGGAATTGTCACCACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7803 CGGAATTTCAGTCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7804 CGGACACAGATCACTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7805 CGGACACTCATGCCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7806 CGGACACTCGCTACGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7807 CGGACACTCGTGGAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7808 CGGAGAAAGCAATAAC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7809 CGGAGAACAGTAGAGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7810 CGGAGAAGTAGCTGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7811 CGGCAGTAGAGTCTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7812 CGGCAGTCAAAGACTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7813 CGGCAGTTCGATGCAT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7814 CGGGACTAGTTACGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7815 CGGGACTCAACACACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7816 CGGGACTGTATCGATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7817 CGGGACTTCTCGACGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7818 CGGGCATCAACTGCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7819 CGGGCATCATCGTCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7820 CGGGCATGTACCAATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7821 CGGGCATGTATAGCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7822 CGGGTCACAATACCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7823 CGGGTGTAGAATTTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7824 CGGGTGTAGCGTCAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7825 CGGGTGTGTATGTCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7826 CGGTCAGCAAAGGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7827 CGTAAGTAGAATTGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7828 CGTAAGTAGGAGGCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7829 CGTAAGTTCGATAACC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7830 CGTAATGAGCACCGTC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7831 CGTAATGAGCAGGTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7832 CGTAATGGTTACGGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7833 CGTAGTACAACGTAAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7834 CGTAGTAGTGTGTACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7835 CGTAGTATCGTAGAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7836 CGTCAAAAGATGAACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7837 CGTCAAAAGCCATTTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7838 CGTCAAACAAACAGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7839 CGTCCATCACTAAACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7840 CGTCCATGTCGAACAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7841 CGTCCATTCCTAGCGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7842 CGTGAATAGAACGTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7843 CGTGAATCACAGTCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7844 CGTGAATCAGGCATTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7845 CGTGAATCAGTTGTTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7846 CGTGAATGTACCGGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7847 CGTGAATTCTTAATCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7848 CGTGATATCGACATTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7849 CGTGTCTCAGGTTCAT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7850 CGTGTCTGTGTAACGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7851 CGTGTCTTCGTTAGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7852 CGTGTCTTCTCCACTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7853 CGTTAGAAGTTTCTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7854 CGTTAGACAATAGGGC SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7855 CGTTAGATCCTACTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7856 CGTTCTGAGCATCGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7857 CGTTGGGAGAGCATCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7858 CGTTGGGCAGCATGCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7859 CTAACCCGTCCATACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7860 CTAACTTAGCACGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7861 CTAACTTAGCTGGCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7862 CTAACTTCAAGCGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7863 CTAACTTGTCAATGGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7864 CTAACTTTCGATCCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7865 CTAAGTGCACTTGAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7866 CTAAGTGGTGTGGTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7867 CTAAGTGTCCGTGACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7868 CTAAGTGTCGGCTGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7869 CTACAGAGTGTCACAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7870 CTACATTAGGGATCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7871 CTACATTCACGGCACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7872 CTACCCACAAGTGATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7873 CTACCCAGTGGATGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7874 CTACGGGAGTTGCGCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7875 CTACGGGCAGTTGGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7876 CTACGGGGTGATGTAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7877 CTACTATGTCGCATTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7878 CTAGACAGTTGCATCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7879 CTAGGTAAGAGGACTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7880 CTAGGTAAGTGCCAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7881 CTAGGTACAAGTGTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7882 CTATAGGAGACATCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7883 CTATAGGCATGACTAC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7884 CTATAGGTCTCGGTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7885 CTATCCGAGCACTGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7886 CTATCCGAGGGTACAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7887 CTATCCGGTACGTGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7888 CTATCTACAAAGGATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7889 CTATCTATCCTAAACG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7890 CTCAACCAGCGAGTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7891 CTCAACCAGTAGTCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7892 CTCAACCGTGTGTCGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7893 CTCAACCTCTAATTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7894 CTCAACCTCTTAAGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7895 CTCAAGAAGCGGATCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7896 CTCAAGAAGTTCTACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7897 CTCAAGACAAAGGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7898 CTCAAGACATGACAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7899 CTCAATTAGACCAAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7900 CTCAATTAGATACAGT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7901 CTCACTGAGAATCGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7902 CTCACTGGTGGCTGAA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7903 CTCACTGGTTAAGAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7904 CTCACTGTCGTTTACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7905 CTCAGAATCACGGGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7906 CTCAGAATCATTGTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7907 CTCAGGGCACCTCGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7908 CTCAGGGCATCCTTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7909 CTCAGGGGTGGTCTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7910 CTCAGTCTCCGCTAGG SRX23721823 SRP491411 right temporal lobe - white matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7911 CTCAGTCTCGCTACGG SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7912 CTCAGTCTCTAGCATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7913 CTCATCGGTCGATTCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7914 CTCATGCGTTAAGTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7915 CTCATTAGTCCGAAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7916 CTCATTATCCATTTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7917 CTCCAACAGGTGAGAA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7918 CTCCACAAGCCTCTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7919 CTCCACAAGGTAAGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7920 CTCCACAGTACCAGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7921 CTCCATGGTCATCCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7922 CTCCCAATCATGGATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7923 CTCCCTCAGGAAGAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7924 CTCCCTCCAGCTTTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7925 CTCCCTCCATACACCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7926 CTCCCTCGTAGTGCGA SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7927 CTCCCTCGTGCGTTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7928 CTCCGATAGCCTGTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7929 CTCCGATAGGGACACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7930 CTCCGATGTAGATCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7931 CTCCGATTCTAGCAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7932 CTCCTTTCACGCCAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7933 CTCCTTTCAGCGTTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7934 CTCGAGGAGACCATAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7935 CTCGAGGAGGATCATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7936 CTCGAGGAGTGCTCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7937 CTCGAGGAGTTAGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7938 CTCGAGGTCCGTAGGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7939 CTCTCAGAGACGGATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7940 CTCTCAGCAAATGAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7941 CTCTCAGGTATGAAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7942 CTCTCGAAGTATGTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7943 CTCTCGACAGCTACAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7944 CTCTCGAGTGGGTTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7945 CTCTGGTCAAATGCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7946 CTCTGGTCAATGACCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7947 CTCTGGTGTATGTCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7948 CTGAATGGTCCTGGGT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7949 CTGAGCGAGCTTCATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7950 CTGAGCGGTAGCGCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7951 CTGAGGCGTTCGGCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7952 CTGATCCGTTGAAGTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7953 CTGATCCTCGACCCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7954 CTGCAGGTCGTTCAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7955 CTGCATCAGCGCCCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7956 CTGCATCGTGTCCGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7957 CTGCCATTCTTCCACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7958 CTGCCTACACATCATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7959 CTGCCTATCGCACTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7960 CTGCGAGGTGGATCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7961 CTGCGAGTCAGGTGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7962 CTGCTCAAGTTACGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7963 CTGCTCAGTCTTCCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7964 CTGGACGGTATCGTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7965 CTGGCAGTCGCCGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7966 CTGGCAGTCTAGAGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7967 CTGGTCTGTAGATCGG SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7968 CTGTACCAGACAACAT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7969 CTGTACCCAAGGTTGG SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7970 CTGTACCGTAGGCTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7971 CTGTACCGTATCGAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7972 CTGTACCGTTCAAGGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7973 CTGTAGACAACTGCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7974 CTGTAGAGTATGCGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7975 CTGTAGATCGTTGCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7976 CTGTATTAGATGCTAA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7977 CTGTATTAGGGTGAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7978 CTGTATTAGTGTTGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7979 CTGTATTTCTCCGATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7980 CTGTCGTTCTGAGGCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7981 CTTACCGCAACCAACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7982 CTTAGGAAGGACAGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7983 CTTAGGAGTGTCCATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7984 CTTAGGATCAGGCGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7985 CTTCAATCATTGCCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7986 CTTCCGAAGATGGCGT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7987 CTTCCGACAGGACTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7988 CTTCCGATCTCGTTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7989 CTTCCTTCATACAGGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7990 CTTCCTTCATCTAACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7991 CTTCGGTCACTAGGTT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7992 CTTCGGTGTCTTAGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7993 CTTCGGTTCTCCACTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7994 CTTCTAAAGCAACCAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7995 CTTCTAACAGGTTCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7996 CTTCTAAGTACTTGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7997 CTTCTCTGTATTCCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7998 CTTCTCTGTTCCTTGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
7999 CTTCTCTTCTGTAAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8000 CTTGAGACACACACTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8001 CTTGAGAGTAGTTCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8002 CTTGATTCACATCCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8003 CTTTCAAAGCAACCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8004 CTTTCAAAGCCTCAGC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8005 CTTTCGGGTCCGTACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8006 CTTTCGGTCACTTATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8007 CTTTCGGTCCTTATCA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8008 GAAACCTAGAGCCGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8009 GAAACCTAGTTACTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8010 GAAACCTCAAATGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8011 GAAACCTGTTACCCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8012 GAAACCTTCTGAACGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8013 GAAATGAAGGAAACGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8014 GAACACTAGGAACGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8015 GAACACTCACGTTGGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8016 GAACACTCAGTAACGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8017 GAACACTGTACCGTGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8018 GAACGTTAGATGCCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8019 GAACGTTTCAACGTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8020 GAACTGTAGTCTGTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8021 GAACTGTCAAATCAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8022 GAACTGTGTATGCGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8023 GAACTGTTCTGTCCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8024 GAAGAATAGCGACTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8025 GAAGCCCAGCTCCACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8026 GAAGCCCAGGGTGAAA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8027 GAAGCCCCAGTGACCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8028 GAAGCCCTCAAGAATG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8029 GAAGCCCTCACAGAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8030 GAAGCCCTCGGACGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8031 GAAGCGACACAGTCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8032 GAAGCGATCACTCGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8033 GAAGCGATCCTAGCGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8034 GAAGGACCAATTGTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8035 GAAGGACTCTGGCCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8036 GAAGGGTCAACCGATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8037 GAAGTAAAGCGATGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8038 GAAGTAAAGCTACTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8039 GAAGTAACACCACTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8040 GAAGTAACATGGTACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8041 GAAGTAAGTCACTACA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8042 GAAGTAATCATCTCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8043 GAAGTAATCTGTTCAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8044 GAATAGAAGATTGTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8045 GAATAGACAATTGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8046 GACACGCCAAACCATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8047 GACACGCGTGACCGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8048 GACACGCGTGACTCGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8049 GACAGCCGTCTTGCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8050 GACAGCCTCGCCGTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8051 GACAGCCTCGGAGTGA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8052 GACATCAAGCTCCGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8053 GACATCAAGCTCGACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8054 GACCAATAGAAATTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8055 GACCAATGTCTGTAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8056 GACCAATGTTACGATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8057 GACCAATTCAAGGACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8058 GACCCAGCAATCTCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8059 GACCTTCAGACGCCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8060 GACCTTCTCACCTCTG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8061 GACGCTGAGGGTCAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8062 GACGCTGCACAAGCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8063 GACGCTGTCAAGAGTA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8064 GACGCTGTCAGCTGTA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8065 GACGTTACAAGACAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8066 GACTATGAGTCCTACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8067 GACTATGGTCCTCCTA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8068 GACTATGGTGGTTTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8069 GACTATGTCGACATCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8070 GACTCAACATCGGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8071 GACTCAAGTAGTGGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8072 GACTCTCCAAGCTACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8073 GACTCTCCACGTAGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8074 GACTCTCGTCTAACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8075 GACTCTCTCTATTGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8076 GACTGATGTACAGTAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8077 GACTTCCAGCGAAACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8078 GACTTCCAGTCGTTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8079 GACTTCCCACACACGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8080 GACTTCCCAGTGCGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8081 GACTTCCTCGATACTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8082 GAGACCCTCACTTTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8083 GAGACTTAGGATGGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8084 GAGACTTCAATACGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8085 GAGAGGTCAACCCGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8086 GAGATGGGTTCCACGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8087 GAGCCTGCATGATGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8088 GAGCTGCCAGTTAGGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8089 GAGCTGCTCAACACGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8090 GAGGCAAAGGAGGGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8091 GAGGCCTAGAGAGCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8092 GAGGCCTCAGAGATTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8093 GAGGCCTGTGTGCCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8094 GAGGGTAAGAAGCGGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8095 GAGGGTACAGCGCTTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8096 GAGGGTATCATTGCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8097 GAGGGTATCCAACACA SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8098 GAGTCATCACTTCTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8099 GAGTCATTCCACTTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8100 GAGTCTAAGATTGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8101 GAGTCTAAGGGCAAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8102 GAGTGAGAGTAACCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8103 GAGTGAGCACCTGCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8104 GAGTGAGCAGGATCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8105 GAGTGAGTCTTCCACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8106 GAGTTGTAGGGTCTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8107 GAGTTTGCAGATCCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8108 GAGTTTGCATGACTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8109 GAGTTTGTCTGCCTGT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8110 GATAGAAAGAAGAGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8111 GATAGAAAGTAGCCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8112 GATAGAACAATGGGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8113 GATAGAAGTACTGCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8114 GATAGCTTCAGCTCTC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8115 GATCACACAACAAGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8116 GATCACACAAGGCAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8117 GATCACAGTGGGCTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8118 GATCACATCCATATGG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8119 GATCATGAGTCATGGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8120 GATCATGGTGATACCT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8121 GATCATGGTTTCCATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8122 GATCATGGTTTCGTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8123 GATCCCTAGTAAGAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8124 GATCCCTGTTAAGCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8125 GATCCCTTCTCGTGGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8126 GATCGTAAGGCGACAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8127 GATCGTACACAACATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8128 GATCGTACACTTGAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8129 GATCGTATCGAGAAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8130 GATGACTAGACTTGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8131 GATGACTAGGAGCTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8132 GATGACTAGGATGGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8133 GATGACTAGTCACACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8134 GATGACTCAGACCATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8135 GATGACTGTACCCGAC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8136 GATGACTGTCCTTAAG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8137 GATGACTTCGGCCTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8138 GATGACTTCTAACGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8139 GATGATCAGCTAAGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8140 GATGATCGTACCATAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8141 GATGATCGTGGGTATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8142 GATGCTATCTATCGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8143 GATGGAGAGATGTTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8144 GATGGAGAGGGTCTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8145 GATGGAGGTAGTGTGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8146 GATGGAGGTGTACATC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8147 GATGTTGCAATGAACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8148 GATGTTGGTCCGAAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8149 GATGTTGTCCAAATGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8150 GATTCGAAGCCTTTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8151 GATTCGAAGTCCCGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8152 GATTCGAGTGTTTCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8153 GATTCGAGTTTCCATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8154 GATTGGTAGGGATCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8155 GATTTCTAGGTCACTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8156 GATTTCTCACACCAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8157 GATTTCTTCTTGTTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8158 GCAACATAGCTCTTCC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8159 GCAACATTCTGCGGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8160 GCAACCGGTTATAGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8161 GCACGGTCAATACGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8162 GCACGGTCAGGGTTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8163 GCACGTGCATTCACAG SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8164 GCACGTGGTCTGATAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8165 GCACGTGTCATTGTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8166 GCACGTGTCCGATAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8167 GCACTAAAGAGTACCG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8168 GCACTAAAGGTCCTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8169 GCAGCCATCGCTGTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8170 GCAGCTGAGAAGCCTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8171 GCAGCTGAGGGCTTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8172 GCAGCTGCATCACAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8173 GCAGCTGGTCACAGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8174 GCAGCTGGTTTAGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8175 GCAGCTGTCGTACACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8176 GCAGGCTGTATCAAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8177 GCAGGCTGTTGCGGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8178 GCAGGCTTCGCAGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8179 GCAGTTAAGGTTACAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8180 GCAGTTAAGTGTTCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8181 GCAGTTACACTCAAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8182 GCAGTTAGTTAAGACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8183 GCAGTTATCAGCTGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8184 GCATCGGTCTCCATAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8185 GCATCTCGTAGACAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8186 GCATCTCGTTCTATCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8187 GCATCTCTCATGAGGG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8188 GCATCTCTCCGTGTAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8189 GCATGATCAGATTCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8190 GCATGATCATCGTCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8191 GCATGATGTCGAGCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8192 GCATTAGCAGCGAACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8193 GCATTAGTCTTACTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8194 GCCAACGAGCAGCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8195 GCCAACGTCGCTCCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8196 GCCAGCAAGAGTTGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8197 GCCAGCACACAGTCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8198 GCCAGCAGTGGAACCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8199 GCCAGGTAGCTTCATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8200 GCCAGGTGTAGGAGGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8201 GCCAGGTTCCAATCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8202 GCCAGGTTCGGAATGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8203 GCCAGTGAGGTGGTTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8204 GCCAGTGTCGTGCAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8205 GCCATGGTCATTTCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8206 GCCATTCGTGTTAACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8207 GCCATTCTCAGACCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8208 GCCCAGATCCAGCAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8209 GCCCAGATCTGAGATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8210 GCCGATGAGGGCGAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8211 GCCGATGCAGTTCACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8212 GCCGTGAAGGTTGTTC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8213 GCCTGTTTCCGAGGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8214 GCCTGTTTCGGCTGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8215 GCGAGAATCATGTCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8216 GCGAGAATCGAAGCCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8217 GCGATCGCATATACCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8218 GCGATCGGTACAGAGC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8219 GCGGAAAAGCAAGTCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8220 GCGGAAAGTCACTGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8221 GCGGATCAGGATACAT SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8222 GCGGATCGTCCTATAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8223 GCGGATCTCTGCATAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8224 GCGTTTCCAGAGCCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8225 GCGTTTCTCAAGGACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8226 GCGTTTCTCTGCAGCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8227 GCTACAAAGAGGTCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8228 GCTACAAGTTAAAGTG SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8229 GCTACCTCAGACGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8230 GCTACCTTCTAGCCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8231 GCTCAAAAGCAAGCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8232 GCTCAAATCAGTCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8233 GCTGAATTCGCGTCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8234 GCTGAATTCTGAATGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8235 GCTGCAGCAACGGCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8236 GCTGCAGTCAGAGCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8237 GCTGGGTAGGCAGGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8238 GCTTCACAGCAAGGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8239 GCTTCACCATTGCTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8240 GCTTCACTCATGAAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8241 GCTTGGGAGACTAAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8242 GCTTGGGAGTGTGTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8243 GCTTGGGTCACCGACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8244 GCTTGGGTCGAGCCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8245 GCTTTCGTCCATACAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8246 GGAACCCCAACTCGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8247 GGAACCCCAATGTGGG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8248 GGAACCCCACGTAACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8249 GGAACCCGTCTGTCCT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8250 GGAAGTGCAATGTGGG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8251 GGAAGTGGTAGGACCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8252 GGAAGTGTCAACCCGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8253 GGAAGTGTCTACGCAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8254 GGAATCTAGCTGTGCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8255 GGAATCTGTACCGGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8256 GGAATCTGTAGTGCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8257 GGAATGGAGCTCCATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8258 GGAATGGCAACAGCCC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8259 GGAATGGCAGAAATTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8260 GGAATGGCAGACGGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8261 GGACGTCTCCGAGCTG SRX23721823 SRP491411 right temporal lobe - white matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8262 GGACGTCTCGGCTGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8263 GGAGAACAGACATACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8264 GGAGAACAGGTGTGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8265 GGAGAACCACACCTAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8266 GGAGAACCAGCAGTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8267 GGAGAACGTCTACTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8268 GGAGAACTCGCTAAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8269 GGAGATGCAGGCGAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8270 GGAGATGCAGTTGAAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8271 GGAGATGCATAAGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8272 GGAGATGTCGTTCATT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8273 GGAGCAAAGCGACCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8274 GGAGCAAAGGCCACCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8275 GGAGCAACAAGAAACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8276 GGAGCAAGTTTGTTGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8277 GGAGGATCAGCATACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8278 GGATCTAGTTGCGAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8279 GGATCTATCCAGTACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8280 GGATGTTAGATCACCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8281 GGATGTTAGGACGCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8282 GGCACGTCAGCCTATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8283 GGCAGTCAGATGAAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8284 GGCAGTCAGGCATGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8285 GGCAGTCTCAGTGCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8286 GGCGTCAAGACTGTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8287 GGCGTCACATTGCCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8288 GGCTGTGGTACCTAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8289 GGCTTGGGTACAAACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8290 GGCTTGGGTACGGTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8291 GGCTTGGGTATCGCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8292 GGGAAGTCAGCGTTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8293 GGGACAAAGGGTTAGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8294 GGGACAACAGAGAAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8295 GGGACCTAGAGACAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8296 GGGACCTAGGCTCACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8297 GGGACCTAGTCTGGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8298 GGGACCTTCAAATGCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8299 GGGACCTTCTGTCTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8300 GGGACTCAGAGCACTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8301 GGGACTCAGCGCGTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8302 GGGACTCGTGACAACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8303 GGGAGATCACCAAATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8304 GGGAGATCATTGCCTC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8305 GGGAGTAGTCGAAACG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8306 GGGAGTAGTGTCATGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8307 GGGAGTATCAAGGCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8308 GGGATCCCACGGGCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8309 GGGATCCGTAGTGCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8310 GGGATGATCACGAACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8311 GGGATGATCGACATCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8312 GGGCCATAGGCGAACT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8313 GGGCCATAGTCAGCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8314 GGGCCATTCGAACCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8315 GGGCGTTAGATGGGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8316 GGGCGTTAGGGCATGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8317 GGGCTACAGGGAGAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8318 GGGCTACGTACATTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8319 GGGCTACTCTCTGCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8320 GGGCTCACACGACAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8321 GGGCTCACAGGCGATA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8322 GGGCTCAGTAGTCCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8323 GGGCTCAGTCTTCATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8324 GGGTAGATCCTGATAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8325 GGGTATTGTAGGCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8326 GGGTATTGTCATAACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8327 GGGTCACCAGTTAGGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8328 GGGTCACCATTCATCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8329 GGGTCACGTCTCGCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8330 GGGTCACTCCTGCTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8331 GGGTCTGAGCGACATG SRX23721823 SRP491411 right temporal lobe - white matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8332 GGGTCTGTCACGTCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8333 GGGTGAAAGAATCGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8334 GGGTGAAAGCGCTTCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8335 GGGTGAACAGAAGCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8336 GGGTGAAGTAAGTTAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8337 GGGTGTCCAGTTCCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8338 GGGTGTCGTATCGCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8339 GGGTTATGTGAGGCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8340 GGGTTTAAGACATATG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8341 GGGTTTACAAGTACCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8342 GGTAACTCACTCGATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8343 GGTAACTCAGTCAGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8344 GGTAACTCATGAGAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8345 GGTAACTTCCGCAGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8346 GGTAATCGTAGCACAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8347 GGTAATCGTCGCACAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8348 GGTAGAGGTGAGAGGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8349 GGTCACGCACTCCTTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8350 GGTCACGCAGCTTCGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8351 GGTCTGGAGGACGGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8352 GGTCTGGTCAGTGTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8353 GGTGAAGCACGCTGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8354 GGTGATTAGATGGTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8355 GGTGATTCACTACACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8356 GGTGATTGTCGACTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8357 GGTGATTTCCTTCTGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8358 GGTGGCTTCAAAGCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8359 GGTGTCGAGAAGCTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8360 GGTGTCGAGGATCATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8361 GGTGTCGAGTAGACCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8362 GGTGTCGGTAGATTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8363 GGTGTCGGTCACTCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8364 GGTGTCGTCTCTTGCG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8365 GGTGTTAAGACCACGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8366 GGTGTTAAGCAGGCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8367 GGTGTTAAGGTAAGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8368 GGTGTTATCGAAGGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8369 GGTTAACCACAACGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8370 GGTTAACGTGTACAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8371 GGTTAACTCCAGGACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8372 GGTTCTCAGGGTGGGA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8373 GGTTCTCCATTGTACG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8374 GGTTCTCGTCGATTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8375 GGTTCTCTCGACCACG SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8376 GGTTCTCTCTTCGCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8377 GGTTGTACACGGATCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8378 GGTTGTATCACTTATC SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8379 GGTTGTATCGGACCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8380 GTAACACAGTCGCGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8381 GTAACACAGTGGTTCT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8382 GTAACACTCCACTGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8383 GTAACCACATCATCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8384 GTAACCATCAACCTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8385 GTAAGTCAGATAACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8386 GTAAGTCTCTCATTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8387 GTAATCGCATCTCGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8388 GTAATCGGTATTCCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8389 GTAATCGGTGGACTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8390 GTAATCGGTTGGACTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8391 GTAATCGTCTCCCTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8392 GTAATGCCACTGAGTT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8393 GTACAACCACACCTAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8394 GTACAACGTTGCTCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8395 GTACAACTCTTAGCAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8396 GTACAGTCAAGTTTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8397 GTACAGTCAGTCAGCC SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8398 GTACAGTGTACGTGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8399 GTACAGTTCAGGAGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8400 GTACAGTTCTAGCATG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8401 GTAGAAACATGGGTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8402 GTAGAAATCGAGTCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8403 GTAGAGGGTTGCCGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8404 GTAGAGGTCTTGGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8405 GTAGATCAGGTTCCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8406 GTAGCTATCCCTATTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8407 GTAGCTATCCGAACGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8408 GTAGGAGAGAAATCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8409 GTAGGAGAGATCCCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8410 GTAGGTTAGACTACCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8411 GTAGTACAGGCTTAAA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8412 GTAGTACCACCTCTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8413 GTAGTACCAGACGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8414 GTAGTACTCAGTGTCA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8415 GTAGTACTCCGAAGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8416 GTAGTACTCGCCATAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8417 GTATTGGAGGCTGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8418 GTATTGGTCTATTCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8419 GTATTTCAGGTTCCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8420 GTATTTCTCAGGACAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8421 GTCAAGTCAATCCTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8422 GTCACGGAGGCGTCCT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8423 GTCACTCGTAATTAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8424 GTCACTCGTAGGTAGC SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8425 GTCACTCTCGCTGTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8426 GTCAGCGAGTGATGGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8427 GTCATCCAGTACCCTA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8428 GTCATCCTCGGTGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8429 GTCATCCTCGTTAGTG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8430 GTCATGAAGAGAAGGT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8431 GTCATTTAGAGAGCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8432 GTCATTTGTTGACTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8433 GTCATTTTCTGCTGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8434 GTCCACTGTTAAGGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8435 GTCCACTTCAAACGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8436 GTCCCATGTACAGAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8437 GTCCCATGTGTCATCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8438 GTCCTCAGTCCACGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8439 GTCGAATCACACCTTC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8440 GTCGAATCACTCCGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8441 GTCGAATGTGAGATCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8442 GTCGAATTCCTCACTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8443 GTCGAATTCGAACACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8444 GTCGAATTCGAGCACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8445 GTCGTAATCTTCCGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8446 GTCGTTCCAATAGAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8447 GTCGTTCCACCAGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8448 GTCGTTCTCGCATTAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8449 GTCTAGAAGTGGACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8450 GTCTCACAGCAACTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8451 GTCTCACGTTAGCGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8452 GTCTTTAGTGGGAGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8453 GTGACGCGTATGATCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8454 GTGACGCGTTCCAAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8455 GTGACGCGTTCGTGCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8456 GTGACGCGTTTACGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8457 GTGACGCTCTAACGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8458 GTGAGGAAGTCCCAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8459 GTGAGGAGTAAGATCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8460 GTGAGGATCAGCGCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8461 GTGAGTTCAAATTAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8462 GTGATGTGTCTGTGTA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8463 GTGATGTGTCTTGGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8464 GTGATGTGTGCCCGTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8465 GTGATGTGTGCGCTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8466 GTGATGTTCTAACACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8467 GTGATGTTCTGGGCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8468 GTGCACGAGGGCAAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8469 GTGCACGTCTTTCTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8470 GTGCAGCAGTCTAGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8471 GTGCAGCTCCATATGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8472 GTGCGTGCAATTGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8473 GTGCGTGTCCGCTAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8474 GTGCTTCAGAGTGAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8475 GTGCTTCCAGTCGGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8476 GTGCTTCTCCGGACTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8477 GTGGAAGAGGAGAGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8478 GTGGAAGGTTCCGCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8479 GTGGCGTGTTCCGCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8480 GTGGCGTTCCACGTAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8481 GTGGGAAGTAACACCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8482 GTGGGAAGTCAATCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8483 GTGGGAATCACGGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8484 GTGGTTAAGCGCACAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8485 GTGTAACCAACTGGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8486 GTGTAACGTTCCGCTT SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8487 GTGTCCTAGTTGAAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8488 GTGTGATCAAGCACAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8489 GTGTGATCACATATCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8490 GTGTGATCAGCATTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8491 GTGTGATGTCATAAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8492 GTGTGGCAGGCTTAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8493 GTGTGGCGTTTCACTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8494 GTGTTAGGTTGCACGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8495 GTGTTAGTCATGGCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8496 GTGTTCCAGTTACGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8497 GTGTTCCTCGGACAAG SRX23721823 SRP491411 right temporal lobe - white matter Stem-to-endothelial cell transdifferentiating nan nan nan CL:0000566 angioblastic mesenchymal cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8498 GTGTTCCTCGTTAGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8499 GTTACAGAGGAATCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8500 GTTACAGCAGCACAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8501 GTTACAGGTATGGAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8502 GTTACAGGTTGAAGTA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8503 GTTACCCAGAGTGACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8504 GTTACCCCAGTAGTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8505 GTTACCCGTCGAAACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8506 GTTACCCGTCTTACTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8507 GTTACGACACATTACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8508 GTTAGACCAAACTAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8509 GTTAGACCACATATGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8510 GTTAGACCATACATCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8511 GTTAGACGTAGCGCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8512 GTTAGACGTGACTGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8513 GTTAGACTCCTACTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8514 GTTATGGAGTCGGCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8515 GTTATGGCAGAAGTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8516 GTTATGGTCGTTGTAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8517 GTTCATTCAGAGCGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8518 GTTCATTTCTCTAAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8519 GTTCCGTAGGAAGTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8520 GTTCCGTAGTTGAAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8521 GTTCGCTAGCTCGACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8522 GTTCGCTCAGAAATTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8523 GTTCGCTTCGCTATTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8524 GTTCTATGTCGTTATG SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8525 GTTCTATTCAACTACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8526 GTTGAACGTGACCTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8527 GTTGCGGAGATCGGTG SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8528 GTTGCGGGTATCGATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8529 GTTGCGGGTGTTGACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8530 GTTGCTCAGTGATTCC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8531 GTTGCTCTCTGAATGC SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8532 GTTGCTCTCTGCGATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8533 GTTGTAGAGACATCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8534 GTTGTAGAGTTGCCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8535 GTTGTAGCACCCTCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8536 GTTGTAGGTAGTAAGT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8537 GTTGTCCCATGGAGAC SRX23721823 SRP491411 right temporal lobe - white matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8538 GTTGTCCGTAGTCGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8539 GTTTACTAGTCATTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8540 GTTTACTCAATGCTCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8541 GTTTACTGTTAATGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8542 GTTTACTTCATATGGC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8543 GTTTGGACATAACCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8544 GTTTGGAGTACTGGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8545 TAACACGAGCAAGCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8546 TAACACGAGGAATGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8547 TAACACGCACTCATAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8548 TAACACGGTTCGTTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8549 TAACCAGCAACACTAC SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8550 TAACGACAGATTTGCC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8551 TAACGACAGTCGCGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8552 TAACGACTCCTACGGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8553 TAACGACTCTATACGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8554 TAACGACTCTTCTAAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8555 TAACTTCCAGATTCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8556 TAAGCACAGTATGAAC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8557 TAAGCACAGTTTGAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8558 TAAGCACCACCCTAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8559 TAAGCACGTCCGGTCA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8560 TAAGCACGTTCTTGCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8561 TAAGCCACATACAGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8562 TAAGCCAGTAGTCTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8563 TAAGCCAGTGTTGCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8564 TAAGCGTCAAATGGTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8565 TAAGCGTGTAACATGA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8566 TAAGCGTGTCACCGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8567 TAAGCGTTCACGGTCG SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8568 TAAGCGTTCACTCGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8569 TAAGTCGAGTAGTCAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8570 TAAGTCGGTGGCAACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8571 TAAGTCGTCACAAGAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8572 TAATCTCAGATGCTGG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8573 TAATCTCGTAGCCCTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8574 TAATCTCTCTAAGCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8575 TACAACGAGCACACCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8576 TACAACGGTGGAAATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8577 TACAGGTAGTGAATAC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8578 TACAGGTGTAATTAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8579 TACAGGTGTCGACTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8580 TACAGGTGTGCCTAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8581 TACAGGTTCTAGTCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8582 TACAGGTTCTGGGCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8583 TACCCACAGTAAGACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8584 TACCCACCATACTTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8585 TACCCACGTATGGAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8586 TACCCACTCATGACAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8587 TACCCGTTCCAACCAA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8588 TACCGAAAGCGAATGC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8589 TACCGAAAGGTATAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8590 TACCGAAAGGTGCCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8591 TACCGAACACACCGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8592 TACCGGGCAACGCCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8593 TACCGGGCATGGACAG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8594 TACCGGGGTGTTCATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8595 TACCGGGGTTGCCAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8596 TACCTCGCATATAGCC SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8597 TACCTCGGTACGCGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8598 TACCTGCCATAGGTAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8599 TACCTGCGTATAGCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8600 TACCTGCTCTAATTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8601 TACCTGCTCTGCGGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8602 TACGGGCAGCGATCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8603 TACGGGCGTATCAGGG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8604 TACGGGCTCATCTCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8605 TACGGGCTCTAGCAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8606 TACGGTAAGTTACGGG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8607 TACGGTATCTTCCTAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8608 TACGTCCAGACGATAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8609 TACGTCCCATCCGAGC SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8610 TACTGCCGTGATTAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8611 TACTGCCTCCGGCTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8612 TACTGCCTCGAAATCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8613 TACTTACAGGGAGGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8614 TACTTACCACCAAAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8615 TACTTACCACTTTAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8616 TACTTACCAGGATTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8617 TACTTCATCATTTACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8618 TACTTCATCCACGTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8619 TACTTGTAGTAAACAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8620 TACTTGTCAGACATCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8621 TACTTGTCAGCAGTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8622 TACTTGTCATGCGTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8623 TACTTGTGTATTGGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8624 TAGACCAAGCAATTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8625 TAGACCAAGGATGTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8626 TAGACCAAGGGACTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8627 TAGACCAGTCACTCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8628 TAGACCAGTTAAGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8629 TAGACTGAGAAAGTCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8630 TAGACTGAGGTTATAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8631 TAGACTGCATTCCTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8632 TAGACTGTCCCAACTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8633 TAGAGTCAGTGGTGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8634 TAGAGTCCAGTCGCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8635 TAGATCGTCACGATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8636 TAGATCGTCGTAGTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8637 TAGGAGGAGGTAGTAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8638 TAGGAGGCACGCTGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8639 TAGGAGGGTTGTAGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8640 TAGGGTTGTGGTCCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8641 TAGGTACGTGATACAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8642 TAGGTACTCCTGGCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8643 TAGGTTGCAATCTGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8644 TAGTGCAAGCACCGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8645 TAGTGCAAGGGTCACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8646 TAGTGCAAGTGGAAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8647 TAGTGCACAACACGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8648 TAGTGCACAACCGGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8649 TAGTGCACAGCGTTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8650 TAGTGCACATAGTCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8651 TAGTGCACATTGAAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8652 TATACCTCAATTCTCT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8653 TATACCTGTAGATTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8654 TATATCCAGCGATCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8655 TATATCCAGTGGACTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8656 TATATCCTCGAGAGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8657 TATATCCTCGCGGTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8658 TATATCCTCTCGACCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8659 TATCAGGAGAGCCTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8660 TATCAGGAGTCGGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8661 TATCAGGGTCCTATAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8662 TATCAGGTCGTCGACG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8663 TATCAGGTCTCGAGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8664 TATCCTAAGGTGCCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8665 TATCCTAAGTCAAGCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8666 TATCCTACATCTCGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8667 TATCCTATCAGATGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8668 TATCTGTAGGTATTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8669 TATCTGTGTCGGTGTC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8670 TATCTTGCATAGACTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8671 TATCTTGTCGGATAAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8672 TATGTTCCACCAAATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8673 TATGTTCCAGACACAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8674 TATGTTCGTCTGCAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8675 TATTCCAAGACCCTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8676 TATTCCACAGGTGTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8677 TATTCCAGTCATGACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8678 TATTCCATCGCACGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8679 TATTCCATCGGATTAC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8680 TATTGCTAGCATGATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8681 TATTGCTCACACGGAA SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8682 TATTGCTGTTATTCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8683 TATTGCTTCCGCCTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8684 TATTGGGAGTACCATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8685 TATTGGGGTAACTAAG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8686 TATTTCGAGGAGAGGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8687 TATTTCGCAGAAGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8688 TATTTCGGTATAGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8689 TATTTCGGTCAGCGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8690 TCAAGTGGTAGATTAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8691 TCAAGTGTCCAAGCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8692 TCAATCTAGATGCAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8693 TCAATCTGTCCACTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8694 TCAATCTTCAATCGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8695 TCAATTCAGCTAAATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8696 TCAATTCCAACCAACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8697 TCAATTCTCACCTACC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8698 TCAATTCTCGTGGTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8699 TCACAAGAGCTAGTTC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8700 TCACAAGCAACTGCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8701 TCACACCGTACATTGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8702 TCACACCTCTTTGATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8703 TCACATTGTCCCGGTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8704 TCACATTGTGTTGATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8705 TCACGCTAGAGGCGTT SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8706 TCACGCTAGGTACTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8707 TCACGCTTCGGATTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8708 TCACGGGAGAAGCCTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8709 TCACGGGAGCTCGTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8710 TCACGGGTCAACTCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8711 TCACGGGTCCACAGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8712 TCACGGGTCGCTTGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8713 TCACTATAGATAGTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8714 TCACTATAGCGAACTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8715 TCACTATAGGGCAGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8716 TCACTCGAGAATCCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8717 TCACTCGAGCATCCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8718 TCACTCGCATACCACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8719 TCACTCGGTAAGCTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8720 TCACTCGGTTGCCTAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8721 TCAGCAAAGCGGTAAC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8722 TCAGCAAAGTATGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8723 TCAGCAAAGTGTACAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8724 TCAGCCTAGATCGCTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8725 TCAGCCTCAGGCAATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8726 TCAGCCTCATTGCTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8727 TCAGCCTGTCACCGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8728 TCAGCCTTCAACTGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8729 TCAGCCTTCCGCAAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8730 TCAGGTATCTAAGAAG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8731 TCAGTCCAGAAACCCG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8732 TCAGTCCAGAGGATGA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8733 TCAGTCCTCATCCTGC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8734 TCAGTCCTCCTCTGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8735 TCAGTGAAGTGATCGG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8736 TCAGTTTTCAATCGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8737 TCATACTAGTAGGCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8738 TCATACTGTCCGGTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8739 TCATCATGTCGCATCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8740 TCATCCGAGAGCTGCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8741 TCATCCGAGAGTAACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8742 TCATGAGAGGACTTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8743 TCATGAGCAAATACGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8744 TCATGAGCAATCCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8745 TCATGAGTCCGTTTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8746 TCATGCCAGCTAATCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8747 TCATGCCGTGTGTGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8748 TCATGCCTCGTAGTGT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8749 TCATGGAAGATTGACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8750 TCATGGACAACTCCAA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8751 TCATGGACACCTATCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8752 TCATGGAGTTGCTCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8753 TCATGGATCACGTAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8754 TCATGGATCCTATTTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8755 TCATGTTGTACAGTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8756 TCATGTTGTGGTACAG SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8757 TCATGTTTCGGTTGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8758 TCATTACGTAGAGCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8759 TCATTACTCTCCAAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8760 TCATTCACAATCTAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8761 TCATTCAGTGTGTACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8762 TCATTCATCTAGAACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8763 TCATTCATCTTCGACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8764 TCATTGTGTCACTAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8765 TCATTTGCAAGTATCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8766 TCATTTGGTTACGGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8767 TCCACCAAGTATAGGT SRX23721823 SRP491411 right temporal lobe - white matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8768 TCCACCACAGTTGTTG SRX23721823 SRP491411 right temporal lobe - white matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8769 TCCACCAGTGGTATGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8770 TCCACCATCGCTGACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8771 TCCACGTTCTGGGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8772 TCCAGAAGTGTGCCTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8773 TCCATCGCAACAAAGT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8774 TCCATCGTCATCCCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8775 TCCATGCCAGGGTTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8776 TCCCACAAGCACCCAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8777 TCCCACACACTCCCTA SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8778 TCCCACAGTGTTCATG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8779 TCCCAGTTCTGAACGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8780 TCCCATGCAGCTGCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8781 TCCCATGTCACGATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8782 TCCGAAACACAGCTTA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8783 TCCGAAAGTTAAGGGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8784 TCCGATCAGCAGCACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8785 TCCGATCAGGCCCAAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8786 TCCGATCAGTAGTCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8787 TCCGGGACAAATGCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8788 TCCGGGAGTAATGCGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8789 TCCGTGTCAAGCTCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8790 TCCGTGTCAGATCATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8791 TCCGTGTCATTGACAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8792 TCCGTGTGTACATACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8793 TCCGTGTTCGGAAACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8794 TCCTAATAGATGGCAC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8795 TCCTAATTCGAGTGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8796 TCCTCCCCAAATGGCG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8797 TCCTCCCCATCACAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8798 TCCTCCCGTCGGCCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8799 TCCTCCCGTGCAACAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8800 TCCTCGAAGGCAATGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8801 TCCTCGAGTATGGTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8802 TCCTGCAAGCATTGAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8803 TCCTGCAAGGTAGTAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8804 TCCTTCTAGGCACCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8805 TCCTTCTCACATATGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8806 TCCTTCTCATACTGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8807 TCCTTTCAGGGCGAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8808 TCCTTTCCAACACACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8809 TCCTTTCCAGTCACGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8810 TCCTTTCGTATGGGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8811 TCGAACAAGCACGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8812 TCGAACAAGGAAGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8813 TCGAACATCAAACCCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8814 TCGAAGTTCATCTACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8815 TCGACCTGTAGTCACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8816 TCGACCTGTCGGAACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8817 TCGACGGCAGGTTCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8818 TCGACGGTCCATTGCC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8819 TCGACGGTCGCTCTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8820 TCGATTTCATCCGCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8821 TCGCACTAGCCATTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8822 TCGCACTAGCTTTGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8823 TCGCACTAGGTTCCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8824 TCGCACTTCAGCTTGA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8825 TCGCAGGCATCCGATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8826 TCGCAGGGTCGGAACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8827 TCGCAGGGTGCTCTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8828 TCGCAGGGTTAGGCCC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8829 TCGCTCAGTCGACTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8830 TCGCTCATCGGACGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8831 TCGCTTGGTCTTGCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8832 TCGCTTGTCAGCGCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8833 TCGCTTGTCAGCGTCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8834 TCGGATACATAGTCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8835 TCGGGACGTCTTGTCC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8836 TCGGGACTCCATAAGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8837 TCGGGCACAACTCCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8838 TCGGGTGAGTAGCAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8839 TCGTAGAGTAGCGTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8840 TCGTAGAGTGTAGCAG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8841 TCGTAGATCGCACTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8842 TCGTCCAAGCTGTTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8843 TCGTCCACAAAGACGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8844 TCGTCCAGTCTTCGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8845 TCGTGCTGTTCCTACC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8846 TCGTGGGCACTGAGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8847 TCGTGGGGTCGTGATT SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8848 TCGTGGGGTGGTTCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8849 TCTAACTGTCAGTCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8850 TCTACATAGCCTATCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8851 TCTACATGTAGACAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8852 TCTACCGCAATAGTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8853 TCTACCGGTGAAGCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8854 TCTACCGTCAATCTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8855 TCTACCGTCACGGAGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8856 TCTATACAGAAATTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8857 TCTATACAGCCGAACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8858 TCTATACAGGATACAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8859 TCTATACGTCGGCACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8860 TCTATCACACTTGTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8861 TCTATCAGTGTTACAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8862 TCTCACGAGGGTTAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8863 TCTCAGCGTGTGTCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8864 TCTCAGCTCAGCAGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8865 TCTCCGACAACACTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8866 TCTCCGAGTTCTCCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8867 TCTCTGGAGTGGCCTC SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8868 TCTCTGGCAAAGAACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8869 TCTGCCATCAGTCACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8870 TCTGGCTTCACCACAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8871 TCTGGCTTCCACGGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8872 TCTGTCGAGACGCCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8873 TCTGTCGAGCATTTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8874 TCTGTCGAGCTTGTTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8875 TCTGTCGAGTAAACAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8876 TCTTAGTAGTAGCATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8877 TCTTAGTCAGGCGTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8878 TCTTAGTCATGGAACG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8879 TCTTAGTGTCTGTGTA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8880 TCTTCCTAGATCCAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8881 TCTTCCTAGGACAGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8882 TCTTCCTCATAGGTAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8883 TCTTGCGCACATATGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8884 TCTTGCGGTCGATTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8885 TCTTTGAAGAGTGTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8886 TCTTTGAGTATCGCGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8887 TCTTTGAGTGGTATGG SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8888 TGAACGTAGAGCAGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8889 TGAACGTGTTTACTTC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8890 TGAATCGCATTCTCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8891 TGAATCGGTGAATTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8892 TGAATCGTCACCTCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8893 TGAATGCGTGGTCTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8894 TGAATGCTCGTAGTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8895 TGACAGTAGTAACGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8896 TGACAGTGTTCAGTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8897 TGACCCTAGGCTCCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8898 TGACCCTGTAACGCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8899 TGACCCTGTACGAAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8900 TGACCCTTCTAGGCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8901 TGACCCTTCTGGCCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8902 TGACGCGCATCCTATT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8903 TGACGCGTCCTATGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8904 TGACTCCAGTAAGCAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8905 TGACTCCGTCACTCTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8906 TGACTCCGTGCAAGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8907 TGAGACTAGCGAGTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8908 TGAGACTCAGTTGGTT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8909 TGAGACTTCTCGTGAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8910 TGAGCATAGTCTTGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8911 TGAGCATTCCAACTAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8912 TGAGCATTCCACACAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8913 TGAGCATTCCGCATAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8914 TGAGCGCAGGTGCCTC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8915 TGAGCGCCAGGACTTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8916 TGAGCGCTCGGAATGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8917 TGAGCGCTCTTCCTAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8918 TGAGGAGAGAGCGACT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8919 TGAGGAGAGGATTCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8920 TGAGGAGTCGGTAAGG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8921 TGAGGAGTCTCTCGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8922 TGAGGGAAGCCTTGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8923 TGAGGGACACCATTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8924 TGAGGTTAGGTGCTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8925 TGATCAGGTTCAGCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8926 TGATCTTAGCAGGTCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8927 TGATCTTAGGATCATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8928 TGATCTTAGGGTTAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8929 TGATCTTCACATAGCT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8930 TGATCTTCATGTGGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8931 TGATCTTTCTTCGGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8932 TGATGCAAGCTCAGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8933 TGATGCAGTCTAACGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8934 TGATGGTAGTGATAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8935 TGATGGTCATGGGCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8936 TGATGGTTCTCAGAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8937 TGATTCTCAATGTCAC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8938 TGATTTCAGGACCCAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8939 TGATTTCAGTCGCCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8940 TGATTTCTCACTGTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8941 TGATTTCTCGCCAGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8942 TGCACGGTCTTAGGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8943 TGCAGATAGAGGTTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8944 TGCAGATAGTGGACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8945 TGCAGATGTAAGATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8946 TGCAGGCCAGCTGTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8947 TGCAGTAAGTTATGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8948 TGCAGTACATAGAGGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8949 TGCAGTACATTCTCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8950 TGCAGTAGTGTAGCAG SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8951 TGCATCCAGCGCCTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8952 TGCATCCCAAATTGGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8953 TGCATCCCAAGACGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8954 TGCATCCCAATCGCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8955 TGCATCCCACTCCACT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8956 TGCATCCGTCCAACGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8957 TGCATCCGTTGTCCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8958 TGCATGAAGGACGCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8959 TGCATGAAGTTTGGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8960 TGCATGATCACTGCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8961 TGCCGAGAGAACTGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8962 TGCCGAGCAATAGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8963 TGCCGAGGTATTTCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8964 TGCCGAGTCAACACCA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8965 TGCCGAGTCAGGAAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8966 TGCGACGGTGAGATCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8967 TGCGACGGTTCTTGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8968 TGCGATAAGCGTCTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8969 TGCGATAGTGCTCGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8970 TGCGGCACAGGCGAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8971 TGCGGCACAGTGCGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8972 TGCGGCAGTCCTACAA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8973 TGCGGGTGTAGGTAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8974 TGCGGGTGTCGAGCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8975 TGCGGGTGTGCCGTTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8976 TGCGGGTGTTGCGTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8977 TGCGGGTTCGTTAGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8978 TGCTCCAAGGCCTTCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8979 TGCTCGTAGACGGATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8980 TGCTCGTCAGTCACGC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8981 TGCTCGTGTACGATTC SRX23721823 SRP491411 right temporal lobe - white matter Stem-to-endothelial cell transdifferentiating nan nan nan CL:0000566 angioblastic mesenchymal cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8982 TGCTCGTTCGTAGTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8983 TGCTGAAAGCAATTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8984 TGCTGAAGTGAGGCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8985 TGCTGAAGTGTGACCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8986 TGCTGAAGTTCCTTGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8987 TGCTTCGCAATGGGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8988 TGCTTCGCATCAGTGT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8989 TGCTTGCAGCGTCTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8990 TGCTTGCTCAAAGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8991 TGCTTGCTCCTGGGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8992 TGGAACTCAGAACGCA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8993 TGGAACTCAGCTTTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8994 TGGAGAGAGACTCCGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8995 TGGAGAGAGATACTGA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8996 TGGAGAGGTCACAGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8997 TGGAGAGGTGAACGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8998 TGGAGAGGTTCATCGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
8999 TGGAGGATCTGTGCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9000 TGGCGTGAGGTCATTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9001 TGGCGTGCAGCAGTGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9002 TGGCGTGGTGCTCCGA SRX23721823 SRP491411 right temporal lobe - white matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9003 TGGGAAGCACATACGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9004 TGGGAAGGTCGGTGAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9005 TGGGAAGGTTGTCTAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9006 TGGGAAGTCTTACGTT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9007 TGGGAGAGTCCTGTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9008 TGGGAGATCGAAACAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9009 TGGGAGATCTAAGAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9010 TGGGATTAGACTAAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9011 TGGGATTAGGTTCTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9012 TGGGATTTCCAAATGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9013 TGGGATTTCGTTCTAT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9014 TGGGCGTAGATACGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9015 TGGGCGTAGATGTTCC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9016 TGGGCGTTCGACATCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9017 TGGGCTGGTAGTTACC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9018 TGGGCTGTCCGATAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9019 TGGGCTGTCGCGCTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9020 TGGGTTAAGACGCATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9021 TGGGTTAAGCACTCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9022 TGGGTTAAGTAGTCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9023 TGGGTTACAAAGGTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9024 TGGGTTATCGGCATAT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9025 TGGTAGTGTCACCTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9026 TGGTGATCAGCGAGTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9027 TGGTGATTCCGTGGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9028 TGGTTAGCAGCGACAA SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9029 TGGTTAGGTGTACATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9030 TGGTTAGTCATTGCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9031 TGTAACGCAACCGCCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9032 TGTAACGCAGCGTTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9033 TGTAACGGTATGGAAT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9034 TGTAACGGTTCACGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9035 TGTAAGCTCATTCGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9036 TGTAAGCTCCTCAGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9037 TGTACAGCATGTTACG SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9038 TGTCAGAGTACGGGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9039 TGTCCACCAAACGTGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9040 TGTCCACCATAGTCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9041 TGTCCACGTGGGATTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9042 TGTCCACTCATGGTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9043 TGTCCTGCAAGAGATT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9044 TGTCCTGCAGCAATTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9045 TGTCCTGGTACAAAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9046 TGTGAGTCACCGGCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9047 TGTGAGTTCATCGACA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9048 TGTGATGTCGTGACTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9049 TGTGCGGAGATAACGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9050 TGTGCGGGTTGTGTTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9051 TGTGCGGTCTGGAGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9052 TGTGGCGAGAATTTGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9053 TGTGGCGGTTAGAAAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9054 TGTGGCGGTTGCGTAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9055 TGTGTGAAGCTGCCAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9056 TGTGTGACACCGTGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9057 TGTTACTAGTATGACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9058 TGTTACTCAATCTCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9059 TGTTACTCAGTTGCGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9060 TGTTACTGTACACGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9061 TGTTCATAGTGGTCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9062 TGTTCATGTGTTCGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9063 TGTTCCGTCTTCGCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9064 TGTTCTACAAAGCGTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9065 TGTTGGAAGTCAGCGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9066 TGTTGGACAGGATGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9067 TGTTGGACATCCGTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9068 TGTTTGTGTTCAGCTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9069 TGTTTGTGTTCGGTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9070 TGTTTGTTCATCGCTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9071 TTAATCCAGCACGGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9072 TTAATCCCACGCAAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9073 TTAATCCTCTCGGTCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9074 TTAATCCTCTGAGCAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9075 TTACAGGAGTTCGGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9076 TTACAGGCAAGGTTGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9077 TTACAGGCATCGTGCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9078 TTACAGGCATTAGGCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9079 TTACAGGGTCACGCTG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9080 TTACAGGGTTCTCCTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9081 TTACCATAGGTAGATT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9082 TTACCATCAAGTGCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9083 TTACCATGTTGCATCA SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9084 TTACCATTCGAGTGAG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9085 TTACCGCAGGGTACAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9086 TTACCGCCATCTTTCA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9087 TTACCGCGTTGTGTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9088 TTACCGCTCGCTTGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9089 TTACGCCAGCGCGTTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9090 TTACGCCAGGTCGTAG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9091 TTACGCCCACACACTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9092 TTACGCCTCTCAACGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9093 TTACGTTCAATTTCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9094 TTACGTTCACCTGCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9095 TTACGTTCAGAAGTGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9096 TTACGTTGTGAAGCGT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9097 TTACTGTGTGGCTGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9098 TTACTGTTCACTCTTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9099 TTAGGCACAACACAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9100 TTAGGCACACCAAATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9101 TTAGGCAGTTAAGGAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9102 TTAGGGTAGAGCAGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9103 TTAGGGTGTTGCCGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9104 TTAGGGTTCCTACCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9105 TTAGTCTCACTGAATC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9106 TTAGTCTTCCACTTTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9107 TTATTGCCACTGTCCT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9108 TTCAATCAGAAGTGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9109 TTCAATCCAACTTGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9110 TTCAATCCAGTTGGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9111 TTCAATCGTTCAAACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9112 TTCAATCTCGCCTTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9113 TTCAATCTCTGTCTCG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9114 TTCACCGAGATCCAAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9115 TTCACCGCACGAGGAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9116 TTCACCGTCTTGGTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9117 TTCACGCAGTGTTCCA SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9118 TTCACGCGTACGTGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9119 TTCAGGAAGTTGCGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9120 TTCAGGAGTAGAAACT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9121 TTCAGGAGTTATGTGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9122 TTCATGTCAAATGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9123 TTCATGTTCTGATGGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9124 TTCATTGAGGGCAGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9125 TTCATTGAGGTGATAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9126 TTCATTGGTAGTTAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9127 TTCCAATAGCGCCTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9128 TTCCAATCATGGTACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9129 TTCCAATGTTGTCAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9130 TTCCAATTCCTATTTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9131 TTCCGGTCATGACGAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9132 TTCCGGTGTATGGAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9133 TTCCGGTGTTGAGGAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9134 TTCCGTGAGCGAAACC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9135 TTCCGTGTCCACAGCG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9136 TTCCTAAGTATCCTCC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9137 TTCCTCTAGGAGCTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9138 TTCCTCTGTGAGGCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9139 TTCGATTAGTAGAGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9140 TTCGATTCAGGTCAAG SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9141 TTCGATTTCATCACTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9142 TTCGCTGCAGTCTGGC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9143 TTCGCTGGTCATAGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9144 TTCGCTGTCCAATCTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9145 TTCGCTGTCGATAACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9146 TTCGGTCAGTCATCGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9147 TTCGGTCCACCAAAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9148 TTCGGTCCACCCAATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9149 TTCGGTCCAGAGATTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9150 TTCGGTCCATGACTGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9151 TTCGGTCTCGCGCTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9152 TTCTAACCACGGTGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9153 TTCTAACCAGCGTGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9154 TTCTAACGTAGGTGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9155 TTCTAACGTCAGCGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9156 TTCTAGTAGGTGCGAT SRX23721823 SRP491411 right temporal lobe - white matter Stem-to-endothelial cell transdifferentiating nan nan nan CL:0000566 angioblastic mesenchymal cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9157 TTCTAGTCACTACACA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9158 TTCTAGTTCTGTTGGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9159 TTCTCTCAGCTGTACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9160 TTCTCTCAGGGAGGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9161 TTCTCTCCAGTCTTCC SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9162 TTCTCTCTCAGTCAGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9163 TTCTCTCTCCTATTGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9164 TTCTCTCTCTCCGCAT SRX23721823 SRP491411 right temporal lobe - white matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9165 TTCTGTACAGAAATCA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9166 TTCTGTATCTTACCGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9167 TTGAACGAGCAGGTCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9168 TTGAACGAGCCTATTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9169 TTGAACGCAAGTCCCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9170 TTGACCCAGGAGGCAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9171 TTGACCCCATACTGAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9172 TTGACCCTCTAAGCGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9173 TTGAGTGAGAATCGTA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9174 TTGAGTGAGGGAGGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9175 TTGAGTGCAACAGATA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9176 TTGAGTGGTGCGGTAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9177 TTGATGGAGAGAGTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9178 TTGATGGAGCGGGTAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9179 TTGATGGAGGTGCAGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9180 TTGCATTCAGCTATAC SRX23721823 SRP491411 right temporal lobe - white matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9181 TTGCATTGTTTGGAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9182 TTGCCTGAGTAAGACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9183 TTGCCTGTCGTAACTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9184 TTGCCTGTCTAGGAAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9185 TTGCGTCAGAAGCCTG SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9186 TTGCGTCTCTTCGACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9187 TTGCTGCAGCTGTTAC SRX23721823 SRP491411 right temporal lobe - white matter Mitochondrial nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9188 TTGCTGCTCACACCCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9189 TTGGATGGTCACAGTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9190 TTGGGCGCAGTCGGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9191 TTGGGTACAAGGACAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9192 TTGGGTAGTCGTGGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9193 TTGGGTAGTGAGAACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9194 TTGGTTTAGGATTACA SRX23721823 SRP491411 right temporal lobe - white matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9195 TTGGTTTTCCAGGACC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9196 TTGGTTTTCTGCGAGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9197 TTGTGGAAGGAATTAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9198 TTGTGGAAGGCCCGTT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9199 TTGTGGACACAGACGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9200 TTGTGGAGTCTCCCTA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9201 TTGTGGAGTCTGTGCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9202 TTGTGGAGTGGCCCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9203 TTGTGGAGTGTCGATT SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9204 TTGTGTTCATCTCAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9205 TTGTGTTGTACGTACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9206 TTGTTCAAGTGCTAGG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9207 TTGTTGTCACGCAAAG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9208 TTGTTGTTCCCGTGAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9209 TTGTTGTTCGTGGCTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9210 TTTACCAGTCGTATTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9211 TTTACCATCTACTATC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9212 TTTACCATCTGAGAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9213 TTTACCATCTTGGTGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9214 TTTACGTAGTAAGAGG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9215 TTTACGTAGTCTACCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9216 TTTACGTCATCACGGC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9217 TTTACTGCACAGCTGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9218 TTTACTGTCAAACGAA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9219 TTTACTGTCTGGCCAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9220 TTTATGCAGTCCCAAT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9221 TTTATGCGTGCAACGA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9222 TTTATGCTCCGGACGT SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9223 TTTCACAAGCCTGAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9224 TTTCACAAGGACAGTC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9225 TTTCACAGTTTAGAGA SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9226 TTTCAGTAGCATGTTC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9227 TTTCAGTGTATGCTTG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9228 TTTCAGTTCCTCTAAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9229 TTTCATGCAACCACGC SRX23721823 SRP491411 right temporal lobe - white matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9230 TTTCATGGTACAGGTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9231 TTTCCTCAGCGCTTCG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9232 TTTCCTCAGGACTTCT SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9233 TTTCCTCGTCATCTAG SRX23721823 SRP491411 right temporal lobe - white matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9234 TTTCCTCGTGACAGGT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9235 TTTCCTCTCGCTGTTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9236 TTTCCTCTCGTGCACG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9237 TTTGACTTCAAGCCAT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9238 TTTGATCCATTGCTTT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9239 TTTGATCTCACTGATG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9240 TTTGGAGCACGTAACT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9241 TTTGGAGTCTCTGGTC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9242 TTTGGTTAGAGCCCAA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9243 TTTGGTTAGCTTGTTG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9244 TTTGGTTCAAGTCCCG SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9245 TTTGGTTCAGTGAGCA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9246 TTTGGTTGTAAGATAC SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9247 TTTGGTTTCGTGCATA SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9248 TTTGTTGAGCCTGAAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9249 TTTGTTGGTAACATAG SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9250 TTTGTTGGTTGCGGCT SRX23721823 SRP491411 right temporal lobe - white matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9251 TTTGTTGTCCGCTTAC SRX23721823 SRP491411 right temporal lobe - white matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_whitematter_sorted_3pr_v3 nan
9252 AAACCCAAGCGAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9253 AAACCCAAGGTTACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9254 AAACCCAAGTGTTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9255 AAACCCACAAATGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9256 AAACCCAGTGGTCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9257 AAACCCAGTGTTCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9258 AAACCCAGTTAGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9259 AAACCCAGTTTCAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9260 AAACCCATCATCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9261 AAACCCATCCACGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9262 AAACCCATCCGAAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9263 AAACCCATCCGTATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9264 AAACCCATCGATGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9265 AAACCCATCTCGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9266 AAACGAAAGTTCCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9267 AAACGAACACACCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9268 AAACGAAGTTATGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9269 AAACGAATCCACGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9270 AAACGCTAGCCTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9271 AAACGCTAGCCTTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9272 AAACGCTCACCTTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9273 AAACGCTGTAATGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9274 AAACGCTGTAGTTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9275 AAACGCTTCACTCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9276 AAACGCTTCCATCAGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9277 AAACGCTTCCATCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9278 AAAGAACCAACAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9279 AAAGAACCAATCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9280 AAAGAACCACAGACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9281 AAAGAACCACCAGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9282 AAAGAACCAGCTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9283 AAAGAACCAGGCAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9284 AAAGAACCAGGTGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9285 AAAGAACCAGTAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9286 AAAGAACGTCATTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9287 AAAGAACTCAGCATTG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9288 AAAGGATAGGCATTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9289 AAAGGATAGGTCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9290 AAAGGATAGTAGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9291 AAAGGATAGTATGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9292 AAAGGATCAGAGTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9293 AAAGGATCAGCACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9294 AAAGGATGTATCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9295 AAAGGATGTATCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9296 AAAGGATGTCGCGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9297 AAAGGATGTGATACTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9298 AAAGGATGTGATCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9299 AAAGGATTCAAGCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9300 AAAGGATTCAGTCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9301 AAAGGATTCGAACCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9302 AAAGGATTCTGCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9303 AAAGGGCAGCATTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9304 AAAGGGCAGTAAGACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9305 AAAGGGCAGTATCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9306 AAAGGGCAGTGCTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9307 AAAGGGCCACAAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9308 AAAGGGCCACCGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9309 AAAGGGCCACCTCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9310 AAAGGGCCATACCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9311 AAAGGGCGTATCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9312 AAAGGGCGTATGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9313 AAAGGGCGTATGAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9314 AAAGGGCGTCAACATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9315 AAAGGGCGTCATCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9316 AAAGGGCGTTACGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9317 AAAGGGCTCATTCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9318 AAAGGGCTCGGCTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9319 AAAGGTAAGCGCCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9320 AAAGGTAAGTCACAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9321 AAAGGTAAGTCTACCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9322 AAAGGTACAAATACGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9323 AAAGGTACACAAGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9324 AAAGGTACATCGAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9325 AAAGGTAGTTCGTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9326 AAAGGTATCAGCGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9327 AAAGGTATCTCGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9328 AAAGTCCAGAGTTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9329 AAAGTCCAGCAGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9330 AAAGTCCAGGAACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9331 AAAGTCCCAAGAAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9332 AAAGTCCCAGTGGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9333 AAAGTCCCATACACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9334 AAAGTCCGTCCACACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9335 AAAGTCCGTCGAAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9336 AAAGTCCGTGACCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9337 AAAGTCCTCGCGGACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9338 AAAGTGAAGGAACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9339 AAAGTGAAGGTCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9340 AAAGTGAAGGTGATAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9341 AAAGTGAAGTTACGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9342 AAAGTGACAACAGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9343 AAAGTGACACGGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9344 AAAGTGACAGCTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9345 AAAGTGAGTTATTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9346 AAAGTGATCAGACCTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9347 AAAGTGATCGAGATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9348 AAAGTGATCGGAATTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9349 AAAGTGATCGGAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9350 AAATGGAAGAGGATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9351 AAATGGAAGGGTTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9352 AAATGGACAAGAATAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9353 AAATGGACAATACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9354 AAATGGACACAGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9355 AAATGGACACTTGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9356 AAATGGAGTCAACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9357 AAATGGAGTGACTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9358 AAATGGAGTGCTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9359 AAATGGAGTTCAATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9360 AAATGGATCCTTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9361 AACAAAGAGAATACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9362 AACAAAGAGCCTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9363 AACAAAGAGGTCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9364 AACAAAGAGGTTAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9365 AACAAAGCAGCGTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9366 AACAAAGGTATACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9367 AACAAAGGTATCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9368 AACAAAGGTGGAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9369 AACAAAGGTGTGGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9370 AACAAAGGTTACGATC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9371 AACAAAGTCATGAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9372 AACAAAGTCCGCTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9373 AACAAAGTCCTGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9374 AACAACCAGAGTTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9375 AACAACCAGCTCTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9376 AACAACCAGGGCTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9377 AACAACCCAACTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9378 AACAACCCAATTCACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9379 AACAACCCACCGCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9380 AACAACCCAGCGGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9381 AACAACCCAGTGCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9382 AACAACCGTTAGTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9383 AACAACCTCGTTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9384 AACAACCTCTACACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9385 AACAACCTCTTTCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9386 AACAAGAAGAAGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9387 AACAAGAAGACTTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9388 AACAAGAAGAGGGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9389 AACAAGAAGTCGAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9390 AACAAGAAGTGGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9391 AACAAGAAGTTGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9392 AACAAGACAGTTAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9393 AACAAGAGTAGATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9394 AACAAGATCAAGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9395 AACAAGATCCTTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9396 AACAAGATCTGCGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9397 AACACACAGAGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9398 AACACACAGCTCCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9399 AACACACCACCTCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9400 AACACACCAGCGGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9401 AACACACCAGCTCATA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9402 AACACACGTCTACACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9403 AACACACGTGTCCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9404 AACACACGTTGCATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9405 AACACACGTTTGGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9406 AACACACTCGATACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9407 AACACACTCGGTTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9408 AACAGGGAGCAATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9409 AACAGGGAGCCAAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9410 AACAGGGAGCGACTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9411 AACAGGGGTAAGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9412 AACAGGGTCCTCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9413 AACAGGGTCGCACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9414 AACAGGGTCTGCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9415 AACCAACAGCCGTTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9416 AACCAACCAAATCGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9417 AACCAACCAACAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9418 AACCAACCATGACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9419 AACCAACGTACGACTT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9420 AACCAACGTGATTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9421 AACCAACTCCGGTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9422 AACCAACTCTATGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9423 AACCACACAAAGAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9424 AACCACACAATAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9425 AACCACACAGTACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9426 AACCACAGTTACGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9427 AACCACATCGGAGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9428 AACCATGAGATAGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9429 AACCATGAGATTCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9430 AACCATGAGCCTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9431 AACCATGCAAGTGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9432 AACCATGCATTAAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9433 AACCATGGTGCAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9434 AACCATGGTGCCTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9435 AACCATGGTTAAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9436 AACCATGGTTTACCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9437 AACCATGTCAAGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9438 AACCATGTCAGTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9439 AACCATGTCTTTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9440 AACCCAACACGTAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9441 AACCCAACAGAAATTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9442 AACCCAACATCTTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9443 AACCCAAGTTACGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9444 AACCCAATCAGACAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9445 AACCCAATCGCTCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9446 AACCCAATCGGTAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9447 AACCTGAAGACCACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9448 AACCTGAAGGATCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9449 AACCTGAAGGTGCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9450 AACCTGAAGTAAACTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9451 AACCTGAAGTTCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9452 AACCTGACACGTAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9453 AACCTGAGTAACGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9454 AACCTGAGTAGTGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9455 AACCTGATCACACCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9456 AACCTGATCACGAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9457 AACCTGATCACTCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9458 AACCTGATCGCACGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9459 AACCTGATCTGTGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9460 AACCTTTAGCCATATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9461 AACCTTTAGGCCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9462 AACCTTTAGGTTGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9463 AACCTTTAGTTGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9464 AACCTTTAGTTGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9465 AACCTTTCAATTGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9466 AACCTTTTCGCTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9467 AACGAAAAGCAGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9468 AACGAAACACAAACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9469 AACGAAAGTAGGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9470 AACGAAAGTGGGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9471 AACGGGAAGGACGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9472 AACGGGAAGGTAAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9473 AACGGGAAGTACCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9474 AACGGGACAAGCCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9475 AACGGGACAATTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9476 AACGGGACACTATCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9477 AACGGGACAGTGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9478 AACGGGAGTACCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9479 AACGGGAGTCCACACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9480 AACGGGAGTGCTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9481 AACGGGATCGCTTTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9482 AACGGGATCGGAGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9483 AACGTCAAGACAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9484 AACGTCAAGCAGGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9485 AACGTCAAGTCACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9486 AACGTCACAATTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9487 AACGTCAGTAGAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9488 AACGTCAGTCTGCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9489 AACGTCATCTACACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9490 AACTTCTAGTGAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9491 AACTTCTCAGCACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9492 AACTTCTGTAACACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9493 AACTTCTGTATTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9494 AACTTCTGTCTGCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9495 AACTTCTTCGATTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9496 AAGAACAAGCATGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9497 AAGAACACAAATGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9498 AAGAACACACAGTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9499 AAGAACACACCTGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9500 AAGAACACAGAGAATT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9501 AAGAACAGTATCAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9502 AAGAACAGTCTTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9503 AAGAACAGTGAACTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9504 AAGAACAGTTGGACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9505 AAGAACATCACCATGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9506 AAGAACATCCTTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9507 AAGAACATCGATCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9508 AAGACAAAGAAACACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9509 AAGACAAAGCACTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9510 AAGACAAAGTAAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9511 AAGACAACACACCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9512 AAGACAACAGAGTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9513 AAGACAACAGCTATAC SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9514 AAGACAACATCAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9515 AAGACAAGTGAGACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9516 AAGACTCAGCGACTGA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9517 AAGACTCAGTTCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9518 AAGACTCCAGGATCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9519 AAGACTCCATGGAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9520 AAGACTCGTGTGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9521 AAGACTCGTTACCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9522 AAGACTCGTTAGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9523 AAGACTCTCCAGTACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9524 AAGATAGAGACGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9525 AAGATAGAGTCCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9526 AAGATAGAGTCTACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9527 AAGATAGAGTTTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9528 AAGATAGCAATGTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9529 AAGATAGGTAGGGTAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9530 AAGATAGGTAGTCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9531 AAGATAGGTAGTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9532 AAGATAGGTGAATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9533 AAGATAGGTGTTCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9534 AAGATAGTCTGCGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9535 AAGCATCAGCGCATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9536 AAGCATCAGGAGAATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9537 AAGCATCAGGTTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9538 AAGCATCAGTAAAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9539 AAGCATCAGTCGGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9540 AAGCATCAGTGGAATT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9541 AAGCATCGTATCGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9542 AAGCATCGTCATGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9543 AAGCATCGTCGGTACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9544 AAGCATCTCGTGTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9545 AAGCATCTCTCGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9546 AAGCCATAGCGCACAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9547 AAGCCATAGCTACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9548 AAGCCATCAATAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9549 AAGCCATCACGTAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9550 AAGCCATCAGCGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9551 AAGCCATGTCCACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9552 AAGCCATGTTGCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9553 AAGCCATTCAGCCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9554 AAGCCATTCCTTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9555 AAGCCATTCGCAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9556 AAGCCATTCGTGTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9557 AAGCCATTCTGACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9558 AAGCGAGAGAAACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9559 AAGCGAGAGATCGACG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9560 AAGCGAGAGTCGTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9561 AAGCGAGAGTGCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9562 AAGCGAGAGTTAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9563 AAGCGAGCAAACTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9564 AAGCGAGCAAGAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9565 AAGCGAGCACGCGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9566 AAGCGAGCACTTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9567 AAGCGAGCAGCTCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9568 AAGCGAGCATCACGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9569 AAGCGAGGTCCACTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9570 AAGCGAGGTCCGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9571 AAGCGAGGTGTTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9572 AAGCGAGTCACATCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9573 AAGCGAGTCCGGTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9574 AAGCGAGTCCTGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9575 AAGCGAGTCGCAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9576 AAGCGTTAGTCTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9577 AAGCGTTCATAACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9578 AAGCGTTGTGCTGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9579 AAGCGTTGTGTTCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9580 AAGCGTTGTTACCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9581 AAGCGTTGTTAGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9582 AAGCGTTTCATGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9583 AAGCGTTTCCGAAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9584 AAGCGTTTCGAGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9585 AAGCGTTTCGTCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9586 AAGGAATAGGACTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9587 AAGGAATAGGTAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9588 AAGGAATAGGTGGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9589 AAGGAATAGTCCTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9590 AAGGAATCAACCTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9591 AAGGAATCAGCAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9592 AAGGAATCATGGACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9593 AAGGAATGTAGACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9594 AAGGAATGTGTCCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9595 AAGGAATTCCCACAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9596 AAGGAATTCCCAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9597 AAGGAATTCGGCTATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9598 AAGGAATTCGTCACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9599 AAGGAATTCTATCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9600 AAGGTAAAGAACTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9601 AAGGTAAAGTATAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9602 AAGGTAACACGAAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9603 AAGGTAACATCTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9604 AAGGTAAGTGATACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9605 AAGGTAAGTGGAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9606 AAGGTAATCAGCTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9607 AAGGTAATCGCCTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9608 AAGTACCAGATCACTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9609 AAGTACCAGGAGAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9610 AAGTACCCAATAACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9611 AAGTACCCACCAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9612 AAGTACCCATTATGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9613 AAGTACCGTAAGGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9614 AAGTACCTCTCACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9615 AAGTCGTAGGAGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9616 AAGTCGTAGGTATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9617 AAGTCGTCACGGCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9618 AAGTCGTGTACGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9619 AAGTCGTGTTCGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9620 AAGTCGTTCAGCCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9621 AAGTCGTTCCTCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9622 AAGTCGTTCGTAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9623 AAGTCGTTCTAGCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9624 AAGTGAAAGACTTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9625 AAGTGAAAGCAAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9626 AAGTGAAAGTTGCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9627 AAGTGAACAGCATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9628 AAGTGAACATAACGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9629 AAGTGAACATAGGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9630 AAGTGAATCAAAGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9631 AAGTGAATCAAGGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9632 AAGTGAATCCTATGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9633 AAGTTCGAGAACGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9634 AAGTTCGAGAACTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9635 AAGTTCGAGAGTCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9636 AAGTTCGAGCTAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9637 AAGTTCGAGGATGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9638 AAGTTCGAGTATGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9639 AAGTTCGCAGAGGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9640 AAGTTCGCATGCGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9641 AAGTTCGGTCCCAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9642 AAGTTCGTCTCCTGAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9643 AAGTTCGTCTGTAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9644 AATAGAGAGACACACG SRX23721832 SRP491411 right temporal lobe - grey matter Proliferating endothelial cell nan nan nan CL:0000115 endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9645 AATAGAGGTACGCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9646 AATAGAGGTCACCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9647 AATAGAGGTCGCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9648 AATAGAGGTGCACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9649 AATAGAGGTTAAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9650 AATAGAGTCCGATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9651 AATAGAGTCGAGCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9652 AATAGAGTCTTGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9653 AATCACGAGTATAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9654 AATCACGCAAATCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9655 AATCACGCAGGAAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9656 AATCACGCATGAAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9657 AATCACGCATTGCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9658 AATCACGGTCCATCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9659 AATCACGGTCCTCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9660 AATCACGTCCCAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9661 AATCACGTCCGATTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9662 AATCACGTCTAAGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9663 AATCGACAGAGAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9664 AATCGACCATGGCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9665 AATCGACGTAATCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9666 AATCGACGTATGTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9667 AATCGACTCGCATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9668 AATCGACTCGCTGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9669 AATCGTGAGACCAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9670 AATCGTGCAAGACAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9671 AATCGTGCACAATGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9672 AATCGTGCACATATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9673 AATCGTGCATAGATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9674 AATCGTGGTAGTGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9675 AATCGTGGTTCGAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9676 AATGAAGAGAAACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9677 AATGAAGAGCTAATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9678 AATGAAGCAGCGACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9679 AATGAAGGTCATCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9680 AATGAAGGTCGTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9681 AATGAAGGTGAGATAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9682 AATGAAGGTGCATCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9683 AATGAAGGTGGAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9684 AATGAAGGTGTTACAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9685 AATGAAGGTTAGAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9686 AATGAAGGTTGGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9687 AATGAAGTCACTCACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9688 AATGAAGTCAGCGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9689 AATGAAGTCCACCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9690 AATGAAGTCGTAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9691 AATGAAGTCTGGGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9692 AATGACCAGGAGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9693 AATGACCAGGGAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9694 AATGACCCAAAGACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9695 AATGACCCAACTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9696 AATGACCCAAGCACAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9697 AATGACCTCCGGACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9698 AATGACCTCTTCTGGC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9699 AATGCCAAGCCTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9700 AATGCCACAGAATCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9701 AATGCCACAGTCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9702 AATGCCAGTACAAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9703 AATGCCAGTCCACATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9704 AATGCCAGTGAATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9705 AATGCCAGTGCGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9706 AATGCCAGTTCGGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9707 AATGCCATCCCATGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9708 AATGCCATCCGGGACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9709 AATGGAAAGTACTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9710 AATGGAACAGTAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9711 AATGGAACATTAAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9712 AATGGAAGTACCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9713 AATGGAAGTACTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9714 AATGGAAGTATCCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9715 AATGGAAGTCTGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9716 AATGGAATCGCGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9717 AATGGAATCTCCCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9718 AATGGAATCTCGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9719 AATGGCTAGACAAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9720 AATGGCTAGATCCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9721 AATGGCTAGCTTTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9722 AATGGCTAGGCAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9723 AATGGCTAGGTAACTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9724 AATGGCTAGGTAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9725 AATGGCTAGTCTCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9726 AATGGCTAGTTCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9727 AATGGCTCAACTCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9728 AATGGCTCAAGAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9729 AATGGCTCACCGTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9730 AATGGCTCAGGAATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9731 AATGGCTGTCGTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9732 AATGGCTGTCGTCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9733 AATGGCTTCACGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9734 AATGGCTTCCTTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9735 AATGGCTTCGCCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9736 AATGGCTTCTAGTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9737 AATGGCTTCTGAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9738 AATTCCTAGTAAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9739 AATTCCTAGTACCATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9740 AATTCCTCACTGAATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9741 AATTCCTCAGTCAGCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9742 AATTCCTGTGAGATAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9743 AATTCCTGTGATGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9744 AATTCCTGTGTGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9745 AATTCCTTCCTCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9746 AATTCCTTCGATCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9747 AATTCCTTCGTAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9748 AATTTCCAGATGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9749 AATTTCCAGGCGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9750 AATTTCCCAAATGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9751 AATTTCCCAGAGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9752 AATTTCCCAGCTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9753 AATTTCCGTAACAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9754 AATTTCCGTCCGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9755 AATTTCCGTTGTTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9756 AATTTCCTCATTTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9757 AATTTCCTCCTACACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9758 AATTTCCTCTCGACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9759 ACAAAGAAGATCCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9760 ACAAAGAAGCCGGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9761 ACAAAGAAGCGCGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9762 ACAAAGAAGGGAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9763 ACAAAGACAATTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9764 ACAAAGACACGAAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9765 ACAAAGACAGCTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9766 ACAAAGAGTTAGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9767 ACAAAGATCCCGGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9768 ACAAAGATCGCTTACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9769 ACAACCAAGAGGTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9770 ACAACCAAGGTTAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9771 ACAACCAAGTAAAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9772 ACAACCACAAAGTATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9773 ACAACCACAAATAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9774 ACAACCACACTGATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9775 ACAACCACAGCTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9776 ACAACCAGTATTTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9777 ACAACCAGTCGTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9778 ACAACCAGTGGTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9779 ACAACCAGTTTCGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9780 ACAACCATCGACCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9781 ACAACCATCGATTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9782 ACAACCATCGTTCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9783 ACAACCATCTACTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9784 ACAAGCTAGATAGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9785 ACAAGCTAGCCTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9786 ACAAGCTAGGTAAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9787 ACAAGCTAGTTTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9788 ACAAGCTAGTTTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9789 ACAAGCTCACTCAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9790 ACAAGCTCATGCCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9791 ACAAGCTGTATCGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9792 ACAAGCTGTGGTTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9793 ACAAGCTGTGTCCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9794 ACAAGCTTCATCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9795 ACAAGCTTCGCTGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9796 ACAAGCTTCTACGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9797 ACAAGCTTCTAGGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9798 ACACAGTAGATGAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9799 ACACAGTAGCGACTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9800 ACACAGTCACCATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9801 ACACAGTCACCCTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9802 ACACAGTCAGCTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9803 ACACAGTGTGGCCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9804 ACACAGTGTTAAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9805 ACACAGTTCAAGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9806 ACACAGTTCGTAGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9807 ACACAGTTCTATTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9808 ACACCAAAGAGTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9809 ACACCAAAGCAGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9810 ACACCAAAGCCTTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9811 ACACCAACAAGCCATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9812 ACACCAAGTACAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9813 ACACCAATCGAACACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9814 ACACCAATCTGCCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9815 ACACGCGAGGAACGTC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9816 ACACGCGCACTACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9817 ACACGCGGTGTTACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9818 ACACTGAAGCCATATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9819 ACACTGAAGGGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9820 ACACTGACAAGTCCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9821 ACACTGACAGAGTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9822 ACACTGACATGGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9823 ACACTGATCACATCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9824 ACACTGATCATAGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9825 ACACTGATCCATAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9826 ACACTGATCGCTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9827 ACACTGATCGTGTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9828 ACACTGATCGTTCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9829 ACACTGATCTATACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9830 ACAGAAAAGACGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9831 ACAGAAAAGACGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9832 ACAGAAAAGGATCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9833 ACAGAAAAGTTGTACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9834 ACAGAAACAAGCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9835 ACAGAAACACCCTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9836 ACAGAAACAGTAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9837 ACAGAAAGTACGGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9838 ACAGAAAGTTTGAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9839 ACAGAAATCCATCACC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9840 ACAGAAATCGTGGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9841 ACAGAAATCGTGGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9842 ACAGAAATCTGCGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9843 ACAGCCGAGAGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9844 ACAGCCGAGAGCAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9845 ACAGCCGAGCACAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9846 ACAGCCGAGGTCTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9847 ACAGCCGCAAGAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9848 ACAGCCGCAGGCATTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9849 ACAGCCGCAGTCTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9850 ACAGCCGGTTCACCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9851 ACAGCCGTCGAACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9852 ACAGCCGTCGCGTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9853 ACAGCCGTCGCTAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9854 ACAGGGAAGATTGATG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9855 ACAGGGAGTACCCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9856 ACAGGGAGTGTAGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9857 ACAGGGATCAAGCCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9858 ACAGGGATCAAGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9859 ACAGGGATCATGACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9860 ACATCCCAGCTCCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9861 ACATCCCAGTGCAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9862 ACATCCCCAAGGAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9863 ACATCCCCACTAAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9864 ACATCCCCAGCGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9865 ACATCCCCATGGTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9866 ACATCCCGTACACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9867 ACATCCCGTAGCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9868 ACATCCCGTAGGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9869 ACATCCCTCACCCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9870 ACATCCCTCACTCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9871 ACATCCCTCCAAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9872 ACATCCCTCCATTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9873 ACATCCCTCCCTCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9874 ACATCCCTCTTCCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9875 ACATCGAAGAGGCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9876 ACATCGAAGGCCTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9877 ACATCGAAGTAAACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9878 ACATCGACACAGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9879 ACATCGACACCCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9880 ACATCGACAGGTATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9881 ACATCGACATGACGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9882 ACATCGATCAACTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9883 ACATCGATCATCTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9884 ACATCGATCCCTTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9885 ACATGCAAGATCGCCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9886 ACATGCAAGCATCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9887 ACATGCAAGGGAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9888 ACATGCAAGTCCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9889 ACATGCACAAGAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9890 ACATGCACAGGCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9891 ACATGCAGTCTCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9892 ACATGCATCGCCTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9893 ACATGCATCGGACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9894 ACATGCATCGTGCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9895 ACATGCATCTCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9896 ACATGCATCTCCATAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9897 ACATGCATCTGAGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9898 ACATTTCAGCAGTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9899 ACATTTCAGCTGTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9900 ACATTTCCAAATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9901 ACATTTCCACAAAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9902 ACATTTCCAGCTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9903 ACATTTCGTATCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9904 ACATTTCGTTGCGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9905 ACATTTCGTTTCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9906 ACATTTCTCAAAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9907 ACATTTCTCAAGTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9908 ACCAAACAGCAAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9909 ACCAAACAGGGCAAGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9910 ACCAAACCAAAGCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9911 ACCAAACCAAGATGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9912 ACCAAACCACTTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9913 ACCAAACCAGCTAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9914 ACCAAACGTCAAACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9915 ACCAAACGTCCCGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9916 ACCAAACGTGAGATTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9917 ACCAAACGTGGACTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9918 ACCAAACTCGTTATCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9919 ACCAAACTCTGACCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9920 ACCAACAAGACCATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9921 ACCAACAAGCTGGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9922 ACCAACAAGGCGCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9923 ACCAACAGTAACCCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9924 ACCAACAGTACCTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9925 ACCAACAGTGACTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9926 ACCAACATCGACATTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9927 ACCAACATCTACGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9928 ACCACAAAGTGCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9929 ACCACAACATCACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9930 ACCACAAGTGAATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9931 ACCACAAGTGCATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9932 ACCACAATCACCGACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9933 ACCACAATCATCTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9934 ACCACAATCTCAGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9935 ACCACAATCTCGACGG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9936 ACCATTTAGCATGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9937 ACCATTTAGGCACTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9938 ACCATTTAGTCAACAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9939 ACCATTTAGTCATAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9940 ACCATTTCAAGTCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9941 ACCATTTCAATAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9942 ACCATTTCACACCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9943 ACCATTTCAGATACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9944 ACCATTTCATGGGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9945 ACCATTTGTCCAACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9946 ACCATTTGTGTTAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9947 ACCATTTGTTTGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9948 ACCCAAAAGCCTTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9949 ACCCAAAAGGGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9950 ACCCAAAAGTTGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9951 ACCCAAACACTAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9952 ACCCAAACAGGATTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9953 ACCCAAACAGTGGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9954 ACCCAAAGTTCGTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9955 ACCCAAATCCTACCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9956 ACCCAAATCCTAGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9957 ACCCAAATCGAACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9958 ACCCAAATCTACACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9959 ACCCTCAAGACCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9960 ACCCTCAAGACGGATC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9961 ACCCTCAAGAGCCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9962 ACCCTCACAATCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9963 ACCCTCACAGGTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9964 ACCCTCAGTAGGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9965 ACCCTCATCCATGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9966 ACCCTCATCTGGGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9967 ACCCTCATCTGTGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9968 ACCCTTGAGCAGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9969 ACCCTTGAGCCTCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9970 ACCCTTGAGGGACAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9971 ACCCTTGAGGTCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9972 ACCCTTGAGGTTACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9973 ACCCTTGAGTCAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9974 ACCCTTGAGTCGCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9975 ACCCTTGCAATCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9976 ACCCTTGCAATTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9977 ACCCTTGCACTGGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9978 ACCCTTGCAGCAGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9979 ACCCTTGCATTGTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9980 ACCCTTGGTACCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9981 ACCCTTGGTATAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9982 ACCCTTGGTGGAGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9983 ACCCTTGGTTAGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9984 ACCCTTGGTTGCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9985 ACCCTTGTCACTTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9986 ACCCTTGTCTGCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9987 ACCCTTGTCTTTGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9988 ACCGTTCCAAGAATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9989 ACCGTTCCAAGCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9990 ACCGTTCCAAGGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9991 ACCGTTCGTGCAACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9992 ACCGTTCGTGGCACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9993 ACCGTTCGTTCACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9994 ACCGTTCGTTGAGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9995 ACCGTTCTCATAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9996 ACCGTTCTCCACGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9997 ACCGTTCTCCATAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9998 ACCGTTCTCCTAAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
9999 ACCTACCAGACGTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10000 ACCTACCAGTGGCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10001 ACCTACCCATGACACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10002 ACCTACCCATGAGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10003 ACCTACCGTAGACGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10004 ACCTACCGTCTCACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10005 ACCTACCGTGCTCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10006 ACCTACCGTTGTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10007 ACCTACCTCGACCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10008 ACCTACCTCTCCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10009 ACCTGAACAACGCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10010 ACCTGAACAAGGCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10011 ACCTGAACACGACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10012 ACCTGAAGTCATGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10013 ACCTGAAGTTGAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10014 ACCTGAATCCTCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10015 ACCTGAATCGCTGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10016 ACCTGAATCTTCTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10017 ACCTGTCAGATCGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10018 ACCTGTCAGCACGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10019 ACCTGTCAGGGCTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10020 ACCTGTCCACATATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10021 ACCTGTCCACTTGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10022 ACCTGTCCAGTGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10023 ACCTGTCCATCATCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10024 ACCTGTCGTACAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10025 ACCTGTCGTGAATGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10026 ACCTGTCTCGCTATTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10027 ACGATCACAAATGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10028 ACGATCACAACAAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10029 ACGATCACAGGTGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10030 ACGATCACATACAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10031 ACGATCAGTAAGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10032 ACGATCATCCCTAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10033 ACGATCATCTTTCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10034 ACGATGTAGCCTCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10035 ACGATGTAGCGCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10036 ACGATGTCAAAGAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10037 ACGATGTCACACACTA SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10038 ACGATGTCATACAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10039 ACGATGTGTCGTATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10040 ACGATGTGTGCAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10041 ACGATGTGTGGCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10042 ACGATGTGTGTCATGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10043 ACGATGTTCCTCTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10044 ACGATGTTCTTAGCAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10045 ACGCACGAGAAGTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10046 ACGCACGAGGAGTATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10047 ACGCACGAGTGGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10048 ACGCACGCAGAAGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10049 ACGCACGCAGCGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10050 ACGCACGGTCTGTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10051 ACGCACGGTGGCTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10052 ACGCACGGTTCGTACA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10053 ACGCACGGTTGGATCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10054 ACGCACGTCTCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10055 ACGCACGTCTCTTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10056 ACGGAAGAGACCCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10057 ACGGAAGAGATGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10058 ACGGAAGCACAGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10059 ACGGAAGCAGATTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10060 ACGGAAGGTTGTGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10061 ACGGAAGTCATCCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10062 ACGGAAGTCCACACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10063 ACGGAAGTCCACAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10064 ACGGAAGTCCATTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10065 ACGGAAGTCCCTCATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10066 ACGGGTCAGCGTTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10067 ACGGGTCAGCTCATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10068 ACGGGTCCACGTGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10069 ACGGGTCGTCGCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10070 ACGGGTCTCATTTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10071 ACGGGTCTCGCAGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10072 ACGGGTCTCGTGTGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10073 ACGGTCGAGTTTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10074 ACGGTCGCAAGGTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10075 ACGGTCGCAATTGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10076 ACGGTCGGTAATGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10077 ACGGTCGGTCAGCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10078 ACGGTCGGTGTTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10079 ACGGTCGTCTCTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10080 ACGGTTAAGAGTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10081 ACGGTTAAGCCGGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10082 ACGGTTAAGGATTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10083 ACGGTTACAATGGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10084 ACGGTTACACGGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10085 ACGGTTACATCGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10086 ACGGTTAGTTGGGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10087 ACGGTTATCGGTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10088 ACGTAACAGAGTGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10089 ACGTAACAGCGTATAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10090 ACGTAACAGGTCTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10091 ACGTAACCAGTCTACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10092 ACGTAACGTATCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10093 ACGTAACGTCCCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10094 ACGTAACGTTCCAAAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10095 ACGTAACGTTGCTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10096 ACGTAACTCAGGTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10097 ACGTAACTCGACCACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10098 ACGTAACTCGGAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10099 ACGTAACTCTATCGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10100 ACGTAACTCTGAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10101 ACGTACAAGCGTCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10102 ACGTACACACCCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10103 ACGTACAGTCATATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10104 ACGTACAGTCGACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10105 ACGTACAGTCGTGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10106 ACGTACAGTTGCTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10107 ACGTACAGTTGGAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10108 ACGTACAGTTTCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10109 ACGTACATCGAAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10110 ACGTAGTCATGGAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10111 ACGTAGTGTAACAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10112 ACGTAGTGTCAAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10113 ACGTAGTGTGCCTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10114 ACGTAGTTCCGTGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10115 ACGTAGTTCTATCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10116 ACGTCCTCAAGAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10117 ACGTCCTCAGGACATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10118 ACGTCCTCAGTCAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10119 ACGTCCTGTAAGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10120 ACGTCCTGTCCCTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10121 ACGTCCTGTGACAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10122 ACGTCCTGTGGCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10123 ACGTCCTTCGCGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10124 ACGTCCTTCGTTAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10125 ACGTCCTTCTACGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10126 ACGTCCTTCTAGACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10127 ACGTTCCAGGAGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10128 ACGTTCCAGGATACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10129 ACGTTCCCAAAGTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10130 ACGTTCCCAATTCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10131 ACGTTCCCACACAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10132 ACGTTCCCATGGAATA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10133 ACGTTCCGTATCGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10134 ACGTTCCTCTTCACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10135 ACTACGAAGCCAAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10136 ACTACGAAGGTAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10137 ACTACGACACGCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10138 ACTACGACACTTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10139 ACTACGACAGAGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10140 ACTACGACAGATACCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10141 ACTACGACATAAGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10142 ACTACGACATTAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10143 ACTACGACATTGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10144 ACTACGAGTAACAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10145 ACTACGAGTGCATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10146 ACTACGAGTTGGACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10147 ACTACGATCAGACCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10148 ACTACGATCTGCCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10149 ACTATCTAGTACGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10150 ACTATCTAGTAGGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10151 ACTATCTCAATCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10152 ACTATCTCACTGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10153 ACTATCTCAGCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10154 ACTATCTCATCGATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10155 ACTATCTCATGACGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10156 ACTATCTGTAGTTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10157 ACTATCTGTATTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10158 ACTATCTGTATTGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10159 ACTATCTGTCCAGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10160 ACTATCTGTCTCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10161 ACTATCTTCTCCAATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10162 ACTATCTTCTCCTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10163 ACTATCTTCTCGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10164 ACTATGGAGAGTCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10165 ACTATGGCACCTCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10166 ACTATGGGTACAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10167 ACTATGGGTCGAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10168 ACTATGGTCATCACCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10169 ACTATGGTCGAATCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10170 ACTATGGTCTGCGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10171 ACTATTCAGAAGGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10172 ACTATTCAGCAGCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10173 ACTATTCCAACAGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10174 ACTATTCCACCCTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10175 ACTATTCCACTGCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10176 ACTATTCCAGAGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10177 ACTATTCGTGTCATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10178 ACTATTCGTGTTTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10179 ACTATTCTCTCATTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10180 ACTCCCACACCTGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10181 ACTCCCACAGAATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10182 ACTCCCACAGCACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10183 ACTCCCACAGTCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10184 ACTCCCACATCTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10185 ACTCCCAGTAGTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10186 ACTCCCAGTCAGCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10187 ACTCCCAGTCCAATCA SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10188 ACTCCCAGTCTCACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10189 ACTCCCAGTTGCATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10190 ACTCCCAGTTGGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10191 ACTCCCATCAAGTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10192 ACTCCCATCTCGCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10193 ACTCCCATCTGTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10194 ACTCCCATCTTAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10195 ACTCTCGAGATTAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10196 ACTCTCGCAACACGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10197 ACTCTCGCACACCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10198 ACTCTCGCACTTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10199 ACTCTCGCAGAGTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10200 ACTCTCGCAGCAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10201 ACTCTCGCATAACGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10202 ACTCTCGGTCGCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10203 ACTCTCGGTGGGAGAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10204 ACTCTCGGTGGGTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10205 ACTCTCGGTGTCCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10206 ACTCTCGTCCAGCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10207 ACTCTCGTCGTGGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10208 ACTCTCGTCTAGTTCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10209 ACTCTCGTCTTGGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10210 ACTGATGAGAGAGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10211 ACTGATGAGCACGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10212 ACTGATGAGTATAGAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10213 ACTGATGCACCTGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10214 ACTGATGCATCACGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10215 ACTGATGTCATTGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10216 ACTGCAAAGTCATGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10217 ACTGCAACAAGGAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10218 ACTGCAACAAGGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10219 ACTGCAACACCAAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10220 ACTGCAACATACCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10221 ACTGCAACATGAATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10222 ACTGCAAGTAGTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10223 ACTGCAAGTCTACACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10224 ACTGCAATCAGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10225 ACTGCAATCCACGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10226 ACTGCAATCGAAACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10227 ACTGCAATCTACTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10228 ACTGTCCAGCGATCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10229 ACTGTCCAGCTAAATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10230 ACTGTCCAGGCATGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10231 ACTGTCCAGGCTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10232 ACTGTCCCAATCTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10233 ACTGTCCCATGGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10234 ACTGTCCGTACTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10235 ACTGTCCTCACTACGA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10236 ACTGTCCTCCGTTGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10237 ACTGTGAAGCTCAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10238 ACTGTGACAGTTTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10239 ACTGTGACATAGAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10240 ACTGTGAGTACTGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10241 ACTGTGAGTAGTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10242 ACTGTGAGTCACCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10243 ACTGTGATCCGTAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10244 ACTGTGATCGGCAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10245 ACTGTGATCTCCGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10246 ACTGTGATCTGTAAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10247 ACTGTGATCTTCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10248 ACTTAGGAGGTCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10249 ACTTAGGAGTCCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10250 ACTTAGGAGTGAATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10251 ACTTAGGGTAGAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10252 ACTTAGGGTATCACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10253 ACTTAGGGTGCTCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10254 ACTTAGGGTTTGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10255 ACTTAGGTCACGAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10256 ACTTATCAGCAGCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10257 ACTTATCAGGAACATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10258 ACTTATCAGGAGTATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10259 ACTTATCAGTGACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10260 ACTTATCCAGTCAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10261 ACTTATCGTACGCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10262 ACTTATCGTCCTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10263 ACTTATCGTCGTGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10264 ACTTATCGTTCGTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10265 ACTTATCGTTGAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10266 ACTTATCTCATCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10267 ACTTATCTCCTATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10268 ACTTATCTCGGAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10269 ACTTATCTCGGCTATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10270 ACTTCCGAGGGCAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10271 ACTTCCGAGTGGACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10272 ACTTCCGCAAACTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10273 ACTTCCGCACAAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10274 ACTTCCGCATGTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10275 ACTTCCGGTAGCTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10276 ACTTCCGGTCGCACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10277 ACTTCCGTCAATGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10278 ACTTCCGTCAGAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10279 ACTTCGCAGCCTATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10280 ACTTCGCAGGCACTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10281 ACTTCGCAGTATAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10282 ACTTCGCCAAAGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10283 ACTTCGCCAACCGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10284 ACTTCGCCAATCTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10285 ACTTCGCCACTCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10286 ACTTCGCGTAGGACTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10287 ACTTCGCTCCACCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10288 ACTTCGCTCGACTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10289 ACTTTCAAGACCCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10290 ACTTTCAAGCTCGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10291 ACTTTCAAGTTGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10292 ACTTTCACATCATTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10293 ACTTTCAGTACTCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10294 ACTTTCAGTTTACCAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10295 ACTTTCATCACGAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10296 ACTTTCATCCCAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10297 ACTTTCATCTCATAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10298 ACTTTCATCTTCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10299 ACTTTCATCTTTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10300 ACTTTGTAGAAGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10301 ACTTTGTAGACGATAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10302 ACTTTGTAGCGATGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10303 ACTTTGTAGGCGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10304 ACTTTGTAGTCACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10305 ACTTTGTCAAATTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10306 ACTTTGTCAAGAGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10307 ACTTTGTCACTATGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10308 ACTTTGTGTTCCGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10309 ACTTTGTGTTCGAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10310 ACTTTGTGTTCGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10311 ACTTTGTTCAGCGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10312 ACTTTGTTCGCCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10313 ACTTTGTTCGCGGACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10314 AGAAATGAGAATCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10315 AGAAATGAGCCTAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10316 AGAAATGAGTAGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10317 AGAAATGCAAGTGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10318 AGAAATGCATAATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10319 AGAAATGTCATCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10320 AGAAATGTCCAGGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10321 AGAAATGTCCTACGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10322 AGAACAAAGTCTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10323 AGAACAACACAAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10324 AGAACAACATGACCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10325 AGAACAAGTCACAATC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10326 AGAACAAGTCGTACTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10327 AGAACAAGTGTAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10328 AGAACAAGTTCAAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10329 AGAACAATCGGTAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10330 AGAACAATCTCCGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10331 AGAACCTCACCTTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10332 AGAACCTCAGGACATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10333 AGAACCTCAGGGCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10334 AGAACCTCATGATCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10335 AGAACCTGTTGTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10336 AGAACCTTCAGGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10337 AGAACCTTCATGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10338 AGAACCTTCGAGTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10339 AGAACCTTCTTCCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10340 AGAAGCGAGAGGATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10341 AGAAGCGAGGCTGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10342 AGAAGCGCAACGCATT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10343 AGAAGCGCACCAATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10344 AGAAGCGCAGTCAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10345 AGAAGCGCATAGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10346 AGAAGCGCATCACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10347 AGAAGCGCATCCAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10348 AGAAGCGGTCAACCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10349 AGAAGCGGTCACGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10350 AGAAGCGGTGCCAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10351 AGAAGCGTCATCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10352 AGAAGCGTCCTTGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10353 AGAAGCGTCTCGACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10354 AGAAGTAAGCCGAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10355 AGAAGTAAGGGTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10356 AGAAGTAAGTACTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10357 AGAAGTAAGTTGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10358 AGAAGTACAATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10359 AGAAGTACACAGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10360 AGAAGTACAGACCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10361 AGAAGTACATGTTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10362 AGAAGTAGTCCTACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10363 AGAAGTAGTCTCGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10364 AGACAAAAGAGTTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10365 AGACAAAAGATAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10366 AGACAAAAGCGAGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10367 AGACAAAAGCGCCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10368 AGACAAAAGCTAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10369 AGACAAAAGTGACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Proliferating endothelial cell nan nan nan CL:0000115 endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10370 AGACAAACACTCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10371 AGACAAACAGACACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10372 AGACAAACATACGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10373 AGACAAACATGCCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10374 AGACAAACATTAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10375 AGACAAAGTAAGATCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10376 AGACAAAGTAGATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10377 AGACAAAGTCGTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10378 AGACAAAGTGGATTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10379 AGACAAAGTGTCGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10380 AGACAAATCAAGCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10381 AGACAAATCACCATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10382 AGACAAATCCAAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10383 AGACAAATCGAAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10384 AGACAAATCGCGCTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10385 AGACACTAGCAGCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10386 AGACACTAGTCTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10387 AGACACTCAACCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10388 AGACACTCACCGGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10389 AGACACTCAGCCTACG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10390 AGACACTCAGGTATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10391 AGACACTCATCAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10392 AGACACTGTAGATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10393 AGACACTGTGCAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10394 AGACACTGTTCGAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10395 AGACACTTCAAATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10396 AGACACTTCGCGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10397 AGACAGGAGAACGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10398 AGACAGGAGTTCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10399 AGACAGGCACGTCGTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10400 AGACAGGGTCCTGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10401 AGACAGGTCCGTGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10402 AGACAGGTCGAGCACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10403 AGACAGGTCGCGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10404 AGACAGGTCTACGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10405 AGACAGGTCTGAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10406 AGACAGGTCTTACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10407 AGACCATAGATGTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10408 AGACCATCAACCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10409 AGACCATCAGCTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10410 AGACCATGTCAAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10411 AGACCATGTCATCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10412 AGACCATTCACTGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10413 AGACCATTCATCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10414 AGACCATTCCGATCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10415 AGACCATTCGGCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10416 AGACCCGAGGCTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10417 AGACCCGAGTAACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10418 AGACCCGCAACTCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10419 AGACCCGCATATGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10420 AGACCCGGTAACCCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10421 AGACCCGGTCCAAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10422 AGACCCGGTTGTAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10423 AGACCCGTCCGCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10424 AGACCCGTCGCTTACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10425 AGACCCGTCTACAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10426 AGACCCGTCTCATGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10427 AGACTCAAGATGGCAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10428 AGACTCAAGGGATCGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10429 AGACTCACAACACGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10430 AGACTCACAATGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10431 AGACTCAGTGCAAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10432 AGACTCAGTTAAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10433 AGACTCAGTTGCATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10434 AGACTCAGTTGTAAAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10435 AGACTCATCATGACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10436 AGACTCATCGCTAATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10437 AGACTCATCGGTAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10438 AGACTCATCGTCTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10439 AGAGAATCACCCAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10440 AGAGAATCAGGTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10441 AGAGAATGTGAAAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10442 AGAGAATGTGGTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10443 AGAGAATGTTCTCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10444 AGAGAATGTTGGGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10445 AGAGAATTCAACCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10446 AGAGAATTCCCAACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10447 AGAGAATTCTCCGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10448 AGAGAATTCTTCTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10449 AGAGAGCAGAGTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10450 AGAGAGCAGCACGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10451 AGAGAGCAGTACAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10452 AGAGAGCCAGATTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10453 AGAGAGCGTATAGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10454 AGAGAGCTCTCGTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10455 AGAGCAGAGGCTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10456 AGAGCAGAGGTCACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10457 AGAGCAGCAATACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10458 AGAGCAGCAGCTACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10459 AGAGCAGGTAGTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10460 AGAGCAGGTCATCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10461 AGAGCAGGTTCGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10462 AGAGCAGGTTGCGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10463 AGAGCAGTCATTCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10464 AGAGCAGTCCCGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10465 AGAGCCCAGCCTGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10466 AGAGCCCCACACTTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10467 AGAGCCCCAGACAATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10468 AGAGCCCCATGAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10469 AGAGCCCGTATGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10470 AGAGCCCGTCAAACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10471 AGAGCCCGTCGTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10472 AGAGCCCGTTGGAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10473 AGAGCCCTCATACGAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10474 AGAGCCCTCGCTTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10475 AGAGCCCTCTCGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10476 AGATAGAAGAGCAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10477 AGATAGAAGCCTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10478 AGATAGAAGGATGAGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10479 AGATAGACACCAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10480 AGATAGACACTACGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10481 AGATAGAGTAATGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10482 AGATAGAGTAGATTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10483 AGATAGAGTAGTTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10484 AGATAGAGTCTCTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10485 AGATAGAGTGAGTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10486 AGATAGAGTGCTTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10487 AGATAGAGTTCGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10488 AGATAGAGTTGACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10489 AGATAGATCCGCAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10490 AGATAGATCGACCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10491 AGATCCAAGACAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10492 AGATCCAAGACGCATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10493 AGATCCACAACACGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10494 AGATCCACACTCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10495 AGATCCACAGCAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10496 AGATCCACAGGTGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10497 AGATCCAGTCCGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10498 AGATCCAGTGGGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10499 AGATCCAGTTAGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10500 AGATCCAGTTATTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10501 AGATCCAGTTGTTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10502 AGATCCAGTTTACACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10503 AGATCCATCAATCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10504 AGATCCATCGGATAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10505 AGATCCATCTGTTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10506 AGATCGTAGAATAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10507 AGATCGTAGATCACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10508 AGATCGTAGCCTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10509 AGATCGTAGGATACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10510 AGATCGTAGGGTTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10511 AGATCGTAGTTTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10512 AGATCGTCAAACCATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10513 AGATCGTCAAAGCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10514 AGATCGTCACAAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10515 AGATCGTTCATAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10516 AGATCGTTCCCAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10517 AGATCGTTCGCTAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10518 AGATGAAAGCTGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10519 AGATGAAAGGGATCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10520 AGATGAAAGTTCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10521 AGATGAAAGTTTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10522 AGATGAACAAAGAACT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10523 AGATGAACAAAGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10524 AGATGAACAGTTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10525 AGATGAAGTACGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10526 AGATGAAGTGCAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10527 AGATGAAGTTATCTGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10528 AGATGAATCTGCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10529 AGATGAATCTTACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10530 AGATGCTAGAGGTATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10531 AGATGCTAGGCTATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10532 AGATGCTAGTAGAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10533 AGATGCTCAACGACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10534 AGATGCTGTCCTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10535 AGATGCTGTCGATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10536 AGATGCTGTTCTAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10537 AGATGCTTCAGCCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10538 AGATGCTTCATGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10539 AGATGCTTCATGCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10540 AGATGCTTCCCTCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10541 AGATGCTTCGCAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10542 AGCATCAAGATGAAGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10543 AGCATCACAAGCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10544 AGCATCACACGCGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10545 AGCATCAGTGAATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10546 AGCATCAGTGGCATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10547 AGCATCATCGTTTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10548 AGCCAATAGCATCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10549 AGCCAATAGGTGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10550 AGCCAATGTAATACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10551 AGCCAATGTCGCACAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10552 AGCCAATGTCTTAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10553 AGCCAATGTGTTTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10554 AGCCAATTCCCATTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10555 AGCCAATTCCTTTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10556 AGCCAATTCGTGGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10557 AGCCAATTCTTGGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10558 AGCCACGAGAGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10559 AGCCACGAGCCAGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10560 AGCCACGAGCGCCGTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10561 AGCCACGAGCGCTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10562 AGCCACGAGGTGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10563 AGCCACGAGTGACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10564 AGCCACGCAAGGCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10565 AGCCACGCAATTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10566 AGCCACGCACCACATA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10567 AGCCACGCAGGCAATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10568 AGCCACGGTACGCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10569 AGCCACGGTAGATCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10570 AGCCACGGTCCACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10571 AGCCACGTCCGATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10572 AGCCACGTCTAACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10573 AGCCACGTCTAAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10574 AGCCAGCAGGGCTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10575 AGCCAGCAGTTGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10576 AGCCAGCCAAGTTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10577 AGCCAGCCACTGGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10578 AGCCAGCCAGCACCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10579 AGCCAGCGTCTGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10580 AGCCAGCTCCATTTAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10581 AGCCAGCTCCTCTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10582 AGCCAGCTCTACCCAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10583 AGCGATTAGCTCACTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10584 AGCGATTAGGTCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10585 AGCGATTGTCGCATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10586 AGCGATTGTCTCACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10587 AGCGCCAAGCGACCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10588 AGCGCCAAGGTCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10589 AGCGCCACAGAACCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10590 AGCGCCACATGACTCA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10591 AGCGCCACATGGGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10592 AGCGCCAGTGCCCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10593 AGCGCCATCAAGTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10594 AGCGCCATCATCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10595 AGCGCCATCCTAAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10596 AGCGCCATCTCGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10597 AGCGCTGAGATCGACG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10598 AGCGCTGAGGAATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10599 AGCGCTGAGGGAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10600 AGCGCTGAGTTACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10601 AGCGCTGCAGAACGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10602 AGCGCTGGTTACCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10603 AGCGCTGGTTGAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10604 AGCGCTGTCGTGCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10605 AGCGTATAGCAAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10606 AGCGTATAGGCCTAGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10607 AGCGTATAGTGTTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10608 AGCGTATCAACATACC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10609 AGCGTATCAAGACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10610 AGCGTATGTCCTCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10611 AGCGTATGTCTTACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10612 AGCGTATGTTTGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10613 AGCGTATTCAAGCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10614 AGCGTATTCAGCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10615 AGCGTATTCGGACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10616 AGCGTATTCTCACCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10617 AGCGTCGCACATTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10618 AGCGTCGGTAACACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10619 AGCGTCGGTACGACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10620 AGCTACAAGGAAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10621 AGCTACAAGGAGGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10622 AGCTACAAGTTAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10623 AGCTACACAAAGTATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10624 AGCTACACATCCGAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10625 AGCTACATCGAGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10626 AGCTACATCTACCACC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10627 AGCTACATCTCGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10628 AGCTCAAAGAGATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10629 AGCTCAAAGTTGCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10630 AGCTCAAAGTTGCGCC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10631 AGCTCAACATCGATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10632 AGCTCAAGTAGCTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10633 AGCTCAAGTATAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10634 AGCTCAAGTTAAAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10635 AGCTCAAGTTAGAAGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10636 AGCTCAAGTTTACTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10637 AGCTCAATCGAGCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10638 AGCTTCCAGGCACTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10639 AGCTTCCCAGTCTGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10640 AGCTTCCCAGTTACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10641 AGCTTCCCATCCTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10642 AGCTTCCCATTCAGCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10643 AGCTTCCGTATGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10644 AGCTTCCGTCTGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10645 AGCTTCCGTTAGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10646 AGGAAATCAATGGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10647 AGGAAATCAGAGTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10648 AGGAAATCAGTCCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10649 AGGAAATCATGGCACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10650 AGGAAATGTACGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10651 AGGAAATGTGTTACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10652 AGGAAATTCCATTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10653 AGGAAATTCCCTAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10654 AGGAAATTCCTAGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10655 AGGAAATTCGAGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10656 AGGAATAAGAATCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10657 AGGAATACAACGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10658 AGGAATACACTCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10659 AGGAATAGTCGCTTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10660 AGGAATAGTCGTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10661 AGGAATATCCGCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10662 AGGAATATCCGTGGGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10663 AGGACGAAGACGGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10664 AGGACGAAGCTCAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10665 AGGACGACACTTTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10666 AGGACGACATCGCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10667 AGGACGAGTGGAGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10668 AGGACGATCCTGTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10669 AGGACGATCTGGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10670 AGGACTTAGACTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10671 AGGACTTCAAATGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10672 AGGACTTCAGACAATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10673 AGGACTTGTCTGCGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10674 AGGACTTGTTGTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10675 AGGACTTTCGCCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10676 AGGAGGTAGAGTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10677 AGGAGGTAGCCTTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10678 AGGAGGTAGTCGCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10679 AGGAGGTAGTGGATAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10680 AGGAGGTCACGCTTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10681 AGGAGGTCAGACCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10682 AGGAGGTCAGTTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10683 AGGAGGTGTACAAACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10684 AGGAGGTGTACGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10685 AGGAGGTGTACTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10686 AGGAGGTGTGCCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10687 AGGAGGTGTGTCTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10688 AGGAGGTGTGTTACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10689 AGGAGGTTCATTGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10690 AGGAGGTTCTCGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10691 AGGATAACAACCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10692 AGGATAACATGGCACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10693 AGGATAAGTAGGAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10694 AGGATAATCCGAGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10695 AGGATCTAGATACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10696 AGGATCTCAAATCGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10697 AGGATCTCACCTGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10698 AGGATCTCATAACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10699 AGGATCTCATTAAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10700 AGGATCTGTCAACATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10701 AGGATCTGTCCGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10702 AGGATCTGTGTCTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10703 AGGATCTTCCTATTTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10704 AGGATCTTCGCAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10705 AGGATCTTCTAGTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10706 AGGCATTAGATGGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10707 AGGCATTAGGTCATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10708 AGGCATTAGTAGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10709 AGGCATTAGTTCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10710 AGGCATTCACCTGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10711 AGGCATTCACGTCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10712 AGGCATTCAGCATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10713 AGGCATTCAGTTAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10714 AGGCATTGTAAGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10715 AGGCATTTCAGCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10716 AGGCATTTCCGGTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10717 AGGCATTTCCTGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10718 AGGCCACAGGGACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10719 AGGCCACAGTCAGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10720 AGGCCACAGTGAGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10721 AGGCCACCAACGGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10722 AGGCCACCAAGGAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10723 AGGCCACCATATGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10724 AGGCCACGTACAAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10725 AGGCCACGTATCAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10726 AGGCCACGTTCCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10727 AGGCCACTCCGCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10728 AGGCCACTCTGGCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10729 AGGCCACTCTTTGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10730 AGGCTGCAGATGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10731 AGGCTGCAGGTACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10732 AGGCTGCCAAGGTACG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10733 AGGCTGCCAATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10734 AGGCTGCCAGCTACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10735 AGGCTGCCAGTGACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10736 AGGCTGCCATAGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10737 AGGCTGCGTACATACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10738 AGGCTGCGTGGCGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10739 AGGCTGCGTTGCTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10740 AGGCTGCTCAGACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10741 AGGCTGCTCGCTATTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10742 AGGCTGCTCGGCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10743 AGGGAGTAGCAGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10744 AGGGAGTCATGGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10745 AGGGAGTGTTCATCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10746 AGGGAGTTCCTTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10747 AGGGCCTCACAATGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10748 AGGGCCTCACAGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10749 AGGGCCTCAGAAATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10750 AGGGCCTCAGTATGAA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10751 AGGGCCTGTAAGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10752 AGGGCCTGTAGTCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10753 AGGGCCTGTCTTCTAT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10754 AGGGCCTGTTGGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10755 AGGGCCTTCCGAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10756 AGGGCCTTCTCTATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10757 AGGGCCTTCTGACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10758 AGGGCCTTCTGGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10759 AGGGCCTTCTTTCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10760 AGGGCTCAGTTCATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10761 AGGGCTCCACTGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10762 AGGGCTCTCCTGTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10763 AGGGCTCTCGCAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10764 AGGGTCCAGGGAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10765 AGGGTCCCAACATACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10766 AGGGTCCCACGACGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10767 AGGGTCCTCCGCGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10768 AGGGTCCTCGGTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10769 AGGGTGAAGCAGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10770 AGGGTGAAGCAGGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10771 AGGGTGAAGCTAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10772 AGGGTGAAGGTGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10773 AGGGTGACAATTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10774 AGGGTGACACCATATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10775 AGGGTGACACTAGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10776 AGGGTGACACTCCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10777 AGGGTGAGTCCTACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10778 AGGGTGAGTCGAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10779 AGGGTGATCTAACACG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10780 AGGGTTTAGGACAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10781 AGGGTTTAGTCTGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10782 AGGGTTTAGTCTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10783 AGGGTTTGTATGATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10784 AGGGTTTGTATGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10785 AGGGTTTGTCGATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10786 AGGGTTTGTCGTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10787 AGGGTTTGTTCTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10788 AGGGTTTTCATCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10789 AGGTAGGAGACGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10790 AGGTAGGAGCTCGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10791 AGGTAGGAGTCACTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10792 AGGTAGGCAATTGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10793 AGGTAGGCACGCGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10794 AGGTAGGGTAGAGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10795 AGGTAGGTCCGGGACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10796 AGGTAGGTCGAAGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10797 AGGTAGGTCGGAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10798 AGGTAGGTCTGCCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10799 AGGTCATAGACCAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10800 AGGTCATAGAGGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10801 AGGTCATAGGTAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10802 AGGTCATAGGTGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10803 AGGTCATAGTAAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10804 AGGTCATAGTGCCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10805 AGGTCATTCCCGAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10806 AGGTCATTCCGGCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10807 AGGTCATTCGTTACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10808 AGGTCATTCGTTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10809 AGGTCTAAGCGGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10810 AGGTCTAAGGGAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10811 AGGTCTAAGGTCATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10812 AGGTCTAAGTAATCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10813 AGGTCTACAAGCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10814 AGGTCTACACAATTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10815 AGGTCTACAGTCTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10816 AGGTCTAGTAACTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10817 AGGTCTAGTAGTCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10818 AGGTCTAGTCCTCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10819 AGGTCTAGTCGACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10820 AGGTCTATCACTTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10821 AGGTCTATCATCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10822 AGGTCTATCATTCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10823 AGGTCTATCGCATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10824 AGGTCTATCTAGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10825 AGGTCTATCTCAGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10826 AGGTCTATCTCTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10827 AGGTGTTAGATTCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10828 AGGTGTTAGCTTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10829 AGGTGTTAGGGTTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10830 AGGTGTTAGTCAGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10831 AGGTGTTAGTGTACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10832 AGGTGTTCAAAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10833 AGGTGTTCAATTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10834 AGGTGTTCACAAGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10835 AGGTGTTCACGCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10836 AGGTGTTCATGGATCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10837 AGGTGTTGTTGTGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10838 AGGTGTTTCAAGCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10839 AGGTGTTTCCGCGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10840 AGGTGTTTCGAGAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10841 AGGTGTTTCTCGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10842 AGGTTACAGCGCACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10843 AGGTTACAGTACCATC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10844 AGGTTACAGTTACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10845 AGGTTACCAGGATCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10846 AGGTTACCAGGTTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10847 AGGTTACCATGTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10848 AGGTTACGTAGTGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10849 AGGTTACGTGCCAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10850 AGGTTACTCTGGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10851 AGGTTGTAGTAGAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10852 AGGTTGTCACATGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10853 AGGTTGTGTCATAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10854 AGGTTGTGTTGCGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10855 AGGTTGTTCAACACGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10856 AGGTTGTTCAATCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10857 AGGTTGTTCAGGAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10858 AGGTTGTTCGGAATTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10859 AGGTTGTTCGTCAACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10860 AGGTTGTTCTCGCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10861 AGTAACCAGACCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10862 AGTAACCAGGAACGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10863 AGTAACCAGGCCATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10864 AGTAACCCAGGCATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10865 AGTAACCGTCATCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10866 AGTAACCGTCCTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10867 AGTAACCTCAGCTAGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10868 AGTAACCTCGCACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10869 AGTAACCTCGTTCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10870 AGTAACCTCTGGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10871 AGTACCACAAGCTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10872 AGTACCACACTGCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10873 AGTACCACAGGAAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10874 AGTACCACATAATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10875 AGTACCACATGGAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10876 AGTACCAGTAAGATCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10877 AGTACCAGTCGTGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10878 AGTACCAGTGCGTTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10879 AGTACCAGTTGGGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10880 AGTACCATCATGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10881 AGTACCATCCGAAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10882 AGTACCATCTTGCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10883 AGTACTGAGCTGTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10884 AGTACTGAGTCACTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10885 AGTACTGAGTGACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10886 AGTACTGAGTTTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10887 AGTACTGCAAATGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10888 AGTACTGCACATCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10889 AGTACTGCACCCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10890 AGTACTGCACGACTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10891 AGTACTGCACTACGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10892 AGTACTGGTTCCGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10893 AGTACTGTCATTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10894 AGTACTGTCCACTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10895 AGTACTGTCCTTCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10896 AGTACTGTCGATTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10897 AGTACTGTCTGCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10898 AGTAGCTAGACCACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10899 AGTAGCTAGCGACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10900 AGTAGCTAGGGAGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10901 AGTAGCTAGTAAACAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10902 AGTAGCTCAGCTAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10903 AGTAGCTCAGGGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10904 AGTAGCTGTGTCATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10905 AGTAGCTGTTGACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10906 AGTAGCTTCAATGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10907 AGTAGCTTCCGCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10908 AGTAGCTTCGGTTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10909 AGTAGCTTCGTTAGTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10910 AGTAGCTTCTGTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10911 AGTAGTCAGACCATTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10912 AGTAGTCAGCAACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10913 AGTAGTCAGCACCCAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10914 AGTAGTCAGCGCATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10915 AGTAGTCAGGCAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10916 AGTAGTCCACCCAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10917 AGTAGTCCACTAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10918 AGTAGTCCAGAGATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10919 AGTAGTCCATAGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10920 AGTAGTCGTAGACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10921 AGTAGTCGTGAATGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10922 AGTAGTCTCCCTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10923 AGTAGTCTCTAACGCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10924 AGTAGTCTCTTAGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10925 AGTCAACAGCCTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10926 AGTCAACAGGTAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10927 AGTCAACCACCGGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10928 AGTCAACCATACCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10929 AGTCAACGTAGCTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10930 AGTCAACGTCAACACT SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10931 AGTCAACGTCGCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10932 AGTCAACGTGCAAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10933 AGTCAACTCAGCTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10934 AGTCAACTCCACTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10935 AGTCACAAGCCTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10936 AGTCACAAGTGTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10937 AGTCACACATATGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10938 AGTCACAGTAGCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10939 AGTCACAGTATCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10940 AGTCACAGTATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10941 AGTCACAGTCACTACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10942 AGTCACAGTCTACAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10943 AGTCACAGTCTAGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10944 AGTCACAGTCTCCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10945 AGTCACATCAAGCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10946 AGTCACATCACCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10947 AGTCACATCGCAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10948 AGTCACATCTGGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10949 AGTCACATCTTCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10950 AGTCATGAGAAGGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10951 AGTCATGAGGGACACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10952 AGTCATGAGGGTCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10953 AGTCATGAGTACGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10954 AGTCATGCATAGATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10955 AGTCATGGTAGCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10956 AGTCATGGTGCCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10957 AGTCATGGTGCGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10958 AGTCATGGTTTCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10959 AGTCATGTCACAGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10960 AGTCATGTCACTGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10961 AGTCATGTCATCGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10962 AGTCATGTCATGCGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10963 AGTCATGTCCGCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10964 AGTCATGTCCTCACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10965 AGTCATGTCGGAACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10966 AGTCATGTCTATTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10967 AGTCATGTCTTTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10968 AGTCTCCAGAGGTATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10969 AGTCTCCAGTCGAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10970 AGTCTCCCAGACCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10971 AGTCTCCCAGATGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10972 AGTCTCCGTGGATCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10973 AGTCTCCGTTTACTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10974 AGTCTCCTCAAGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10975 AGTCTCCTCCCTTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10976 AGTGACTAGTGCCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10977 AGTGACTCACGTATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10978 AGTGACTCACTGCATA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10979 AGTGACTGTCGTTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10980 AGTGATCAGGTAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10981 AGTGATCAGTGCCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10982 AGTGATCAGTTCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10983 AGTGATCCAGCCTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10984 AGTGATCCAGTTCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10985 AGTGATCGTTGTAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10986 AGTGATCTCGAACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10987 AGTGATCTCTACCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10988 AGTGATCTCTAGAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10989 AGTGCCGAGAGAGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10990 AGTGCCGAGTAACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10991 AGTGCCGAGTTTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10992 AGTGCCGCAAACTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10993 AGTGCCGCAGCACCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10994 AGTGCCGCAGCTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10995 AGTGCCGCAGCTTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10996 AGTGCCGCATAAGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10997 AGTGCCGGTCGAGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10998 AGTGCCGGTTCTCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
10999 AGTGCCGGTTTCCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11000 AGTGCCGTCATTTACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11001 AGTGCCGTCTCCCATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11002 AGTGCCGTCTCTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11003 AGTGTTGAGTTGTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11004 AGTGTTGCACATGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11005 AGTGTTGCACGTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11006 AGTGTTGGTACGAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11007 AGTGTTGGTACTGGGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11008 AGTGTTGGTGCTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11009 AGTGTTGGTTTCGTGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11010 AGTGTTGTCCTCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11011 AGTGTTGTCTGTGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11012 AGTTAGCAGCTAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11013 AGTTAGCAGTAGAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11014 AGTTAGCCAAGGAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11015 AGTTAGCCATGATCTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11016 AGTTAGCGTTCTCACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11017 AGTTAGCTCAGCCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11018 AGTTAGCTCCGGGACT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11019 AGTTCCCAGACGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11020 AGTTCCCAGACTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11021 AGTTCCCCAATCAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11022 AGTTCCCCAGACACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11023 AGTTCCCTCACTTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11024 AGTTCCCTCTGTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11025 AGTTCGACACGCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11026 AGTTCGACATACTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11027 AGTTCGAGTTCTAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11028 AGTTCGATCACTGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11029 ATACCGAAGCGTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11030 ATACCGAAGGTCATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11031 ATACCGAAGGTGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11032 ATACCGAAGTATAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11033 ATACCGAAGTATTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11034 ATACCGACAATGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11035 ATACCGACACGCTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11036 ATACCGACAGTGGTGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11037 ATACCGAGTAGCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11038 ATACCGAGTCGAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11039 ATACCGAGTCGGTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11040 ATACCGATCATTATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11041 ATACCGATCCCTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11042 ATACCTTAGAGAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11043 ATACCTTAGCAAGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11044 ATACCTTAGGTTAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11045 ATACCTTCAATCGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11046 ATACCTTCAGAAACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11047 ATACCTTCATCATGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11048 ATACCTTGTATCCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11049 ATACCTTGTTGTAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11050 ATACCTTTCATATGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11051 ATACCTTTCCGTATGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11052 ATACTTCAGAATAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11053 ATACTTCAGCCTCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11054 ATACTTCAGCGTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11055 ATACTTCAGTCTGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11056 ATACTTCCAAGCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11057 ATACTTCCAATGCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11058 ATACTTCCATCGGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11059 ATACTTCGTAGAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11060 ATACTTCGTATGTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11061 ATACTTCGTCAGCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11062 ATACTTCGTGACACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11063 ATACTTCGTGAGTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11064 ATACTTCTCAAACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11065 ATACTTCTCACTCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11066 ATAGACCAGTGGCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11067 ATAGACCCAATTGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11068 ATAGACCCACAGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11069 ATAGACCGTCACGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11070 ATAGACCGTGAGTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11071 ATAGACCTCCGCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11072 ATAGACCTCGGTAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11073 ATAGACCTCTAAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11074 ATAGACCTCTGGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11075 ATAGACCTCTTCCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11076 ATAGAGAAGCACTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11077 ATAGAGAAGTGCCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11078 ATAGAGAGTAGATCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11079 ATAGAGAGTGTCACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11080 ATAGGCTAGACATCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11081 ATAGGCTAGATGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11082 ATAGGCTCAACCGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11083 ATAGGCTCACCTCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11084 ATAGGCTCACTGGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11085 ATAGGCTGTAAGTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11086 ATAGGCTGTCGTGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11087 ATAGGCTTCCGCAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11088 ATAGGCTTCGTTTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11089 ATATCCTAGCTGGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11090 ATATCCTCAATACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11091 ATATCCTCACAGTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11092 ATATCCTCACCGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11093 ATATCCTCATCGCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11094 ATATCCTCATGGCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11095 ATATCCTGTAGGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11096 ATATCCTGTAGTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11097 ATATCCTGTCAGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11098 ATATCCTGTGCGTTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11099 ATATCCTGTGTTCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11100 ATATCCTGTTGTAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11101 ATATCCTTCACCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11102 ATATCCTTCCTTGACC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11103 ATCACAGAGGGTTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11104 ATCACAGAGTAAACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11105 ATCACAGAGTAAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11106 ATCACAGAGTCAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11107 ATCACAGAGTGCAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11108 ATCACAGCAGACAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11109 ATCACAGGTATACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11110 ATCACAGGTGCCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11111 ATCACAGTCGAGGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11112 ATCACAGTCGATGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11113 ATCACAGTCGCTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11114 ATCACAGTCTCCAATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11115 ATCACGAAGATAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11116 ATCACGAAGGGAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11117 ATCACGACACAAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11118 ATCACGACACACCGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11119 ATCACGACACCCTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11120 ATCACGAGTCGGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11121 ATCACGAGTGTTCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11122 ATCACGATCACTTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11123 ATCACGATCGAAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11124 ATCACGATCGATTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11125 ATCACTTAGCACTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11126 ATCACTTAGGAATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11127 ATCACTTCAACTCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11128 ATCACTTGTCACAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11129 ATCACTTGTGGACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11130 ATCACTTGTTCCCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11131 ATCACTTTCACGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11132 ATCACTTTCCAGGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11133 ATCACTTTCCGTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11134 ATCACTTTCGACCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11135 ATCACTTTCGATAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11136 ATCAGGTAGGTTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11137 ATCAGGTCAAGTGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11138 ATCAGGTCAATCGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11139 ATCAGGTCAATGACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11140 ATCAGGTCAATTGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11141 ATCAGGTCACCATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11142 ATCAGGTCACGAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11143 ATCAGGTCAGCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11144 ATCAGGTCAGTTTCGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11145 ATCAGGTGTCACTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11146 ATCAGGTGTGCAACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11147 ATCAGGTTCCATTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11148 ATCAGGTTCTGCACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11149 ATCATTCAGAGAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11150 ATCATTCAGATGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11151 ATCATTCAGCGGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11152 ATCATTCAGGTAACTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11153 ATCATTCAGTCGAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11154 ATCATTCAGTCGTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11155 ATCATTCCAAGACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11156 ATCATTCCAATCGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11157 ATCATTCCAGCTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11158 ATCATTCGTCAAGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11159 ATCATTCGTCAGTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11160 ATCATTCGTCTACTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11161 ATCATTCGTGGTCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11162 ATCATTCGTTAATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11163 ATCATTCTCCTACGAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11164 ATCATTCTCGCAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11165 ATCATTCTCTCGACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11166 ATCCACCAGTTGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11167 ATCCACCCAACCCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11168 ATCCACCCACCAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11169 ATCCACCCACCCTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11170 ATCCACCCACTCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11171 ATCCACCGTAATGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11172 ATCCACCTCGGACTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11173 ATCCACCTCGGTGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11174 ATCCACCTCTGTGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11175 ATCCATTAGACTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11176 ATCCATTAGGCGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11177 ATCCATTAGTGCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11178 ATCCATTAGTTGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11179 ATCCATTCAGCACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11180 ATCCATTCAGTCGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11181 ATCCATTGTACGATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11182 ATCCATTGTAGGGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11183 ATCCATTGTAGTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11184 ATCCATTGTCCATACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11185 ATCCATTTCACCGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11186 ATCCATTTCAGGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11187 ATCCATTTCCCAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11188 ATCCATTTCCTCTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11189 ATCCATTTCGTTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11190 ATCCCTGAGACATCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11191 ATCCCTGAGCGTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11192 ATCCCTGAGGTTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11193 ATCCCTGCAACTCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11194 ATCCCTGGTCATGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11195 ATCCCTGGTCGTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11196 ATCCCTGGTTAAGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11197 ATCCCTGTCATCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11198 ATCCCTGTCCATACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11199 ATCCCTGTCCCGAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11200 ATCCCTGTCTCGCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11201 ATCCGTCAGAGGTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11202 ATCCGTCAGATGGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11203 ATCCGTCAGCACTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11204 ATCCGTCAGCCTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11205 ATCCGTCAGGATGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11206 ATCCGTCGTCGCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11207 ATCCGTCGTGCCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11208 ATCCGTCGTGTCCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11209 ATCCGTCTCAGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11210 ATCCGTCTCTATGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11211 ATCCTATCATGGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11212 ATCCTATGTCAGCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11213 ATCCTATGTCCTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11214 ATCCTATGTTTCGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11215 ATCCTATTCTTCGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11216 ATCGATGAGAATTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11217 ATCGATGAGTCCGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11218 ATCGATGAGTTCAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11219 ATCGATGCACATGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11220 ATCGATGCATATAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11221 ATCGATGGTATAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11222 ATCGATGGTATGAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11223 ATCGATGGTCGAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11224 ATCGATGGTTTGTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11225 ATCGATGTCACGATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11226 ATCGATGTCCTTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11227 ATCGATGTCCTTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11228 ATCGATGTCGGCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11229 ATCGATGTCTCGACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11230 ATCGCCTAGAGCTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11231 ATCGCCTAGAGGTCAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11232 ATCGCCTAGATACATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11233 ATCGCCTAGATCGACG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11234 ATCGCCTAGGTCATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11235 ATCGCCTAGTAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11236 ATCGCCTCAAAGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11237 ATCGCCTCACGCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11238 ATCGCCTCACTTACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11239 ATCGCCTCATCCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11240 ATCGCCTGTAACGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11241 ATCGCCTGTACGACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11242 ATCGCCTGTCCGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11243 ATCGCCTGTGAATTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11244 ATCGCCTGTGAGACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11245 ATCGCCTGTTCGTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11246 ATCGCCTTCCATCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11247 ATCGCCTTCTACCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11248 ATCGGATAGAATTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11249 ATCGGATAGACCATTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11250 ATCGGATAGAGGGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11251 ATCGGATAGCTCACTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11252 ATCGGATCACATCATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11253 ATCGGATCAGGAGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11254 ATCGGATGTACGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11255 ATCGGATGTATCCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11256 ATCGGATGTATCGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11257 ATCGGATGTATGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11258 ATCGGATGTCAACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11259 ATCGGATGTTAAACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11260 ATCGGATTCACAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11261 ATCGGATTCCATTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11262 ATCGGATTCGATTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11263 ATCGGATTCGCAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11264 ATCGGATTCGCATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11265 ATCGGATTCGTGGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11266 ATCGGATTCTGAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11267 ATCGGATTCTGGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11268 ATCGGCGAGACTAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11269 ATCGGCGAGATGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11270 ATCGGCGAGCTACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11271 ATCGGCGAGGCACAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11272 ATCGGCGAGGGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11273 ATCGGCGAGTTTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11274 ATCGGCGCAGACACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11275 ATCGGCGCAGCGATTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11276 ATCGGCGGTATACCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11277 ATCGGCGGTCCAGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11278 ATCGGCGTCTGTAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11279 ATCGTAGAGCCGTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11280 ATCGTAGAGGGACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11281 ATCGTAGAGTTGTACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11282 ATCGTAGCAGCTTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11283 ATCGTAGGTCGCAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11284 ATCGTAGTCACCCTTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11285 ATCGTAGTCCACACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11286 ATCGTAGTCGTAGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11287 ATCGTCCAGTCACTAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11288 ATCGTCCCACCATATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11289 ATCGTCCCACTTGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11290 ATCGTCCGTATATGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11291 ATCGTCCGTCGTATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11292 ATCGTCCGTCGTTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11293 ATCGTCCTCCCGTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11294 ATCGTCCTCCTTGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11295 ATCGTCCTCTAGCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11296 ATCGTCCTCTTCACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11297 ATCGTCCTCTTCGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11298 ATCGTGACAACACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11299 ATCGTGACAAGACCGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11300 ATCGTGACAAGCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11301 ATCGTGACACAAATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11302 ATCGTGACACTAGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11303 ATCGTGACAGGCATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11304 ATCGTGAGTCGCATTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11305 ATCGTGAGTCTGTTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11306 ATCGTGAGTGGAACAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11307 ATCGTGATCAGCGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11308 ATCGTGATCATGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11309 ATCGTGATCCCTCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11310 ATCGTGATCCTGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11311 ATCGTGATCTTAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11312 ATCTCTAAGACTAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11313 ATCTCTAAGCAGGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11314 ATCTCTAAGCTTAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11315 ATCTCTAAGGTTCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11316 ATCTCTACATTCATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11317 ATCTCTACATTGACAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11318 ATCTCTAGTACCAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11319 ATCTCTAGTACTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11320 ATCTCTATCATCCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11321 ATCTCTATCGCTTACC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11322 ATCTCTATCGGTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11323 ATCTCTATCTGCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11324 ATCTTCAAGGTTACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11325 ATCTTCAGTAGATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11326 ATCTTCAGTGGTAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11327 ATCTTCATCCATAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11328 ATGAAAGAGCATTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11329 ATGAAAGAGCTGACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11330 ATGAAAGAGTGCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11331 ATGAAAGCACGCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11332 ATGAAAGCATCATGAC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11333 ATGAAAGCATGTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11334 ATGAAAGGTCAAGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11335 ATGAAAGGTGCTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11336 ATGAAAGGTGGGTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11337 ATGAAAGTCATTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11338 ATGAAAGTCCAGCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11339 ATGAAAGTCTTCCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11340 ATGACCAAGGTTCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11341 ATGACCACACCCTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11342 ATGACCACACTGCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11343 ATGACCACAGAGGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11344 ATGACCAGTACCGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11345 ATGACCAGTCGGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11346 ATGACCAGTGAACTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11347 ATGACCATCAACCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11348 ATGACCATCACTCACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11349 ATGACCATCATGCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11350 ATGAGGGAGAAGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11351 ATGAGGGAGAAGGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11352 ATGAGGGAGATTCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11353 ATGAGGGAGGTTCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11354 ATGAGGGAGGTTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11355 ATGAGGGAGTCCCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11356 ATGAGGGCACAGCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11357 ATGAGGGGTAAGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11358 ATGAGGGGTAGACAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11359 ATGAGGGGTATCGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11360 ATGAGGGGTCATAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11361 ATGAGGGTCAAACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11362 ATGAGTCCACGTCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11363 ATGAGTCCAGGTGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11364 ATGAGTCGTATCGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11365 ATGAGTCGTCAATGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11366 ATGAGTCGTCGCCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11367 ATGAGTCGTGCGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11368 ATGAGTCGTTCCATTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11369 ATGAGTCTCGGTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11370 ATGAGTCTCGTGAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11371 ATGAGTCTCTGTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11372 ATGATCGAGCGGGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11373 ATGATCGAGGCTAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11374 ATGATCGAGGCTGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11375 ATGATCGAGGTATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11376 ATGATCGAGTTATGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11377 ATGATCGCACTTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11378 ATGATCGCATCCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11379 ATGATCGGTCCATCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11380 ATGATCGGTTCTCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11381 ATGATCGTCAGAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11382 ATGATCGTCTCGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11383 ATGCATGAGATAACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11384 ATGCATGAGCAGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11385 ATGCATGAGGCGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11386 ATGCATGAGTGATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11387 ATGCATGGTCATGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11388 ATGCATGGTTGCCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11389 ATGCATGTCAACTGGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11390 ATGCATGTCACAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11391 ATGCATGTCTCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11392 ATGCCTCCAAGGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11393 ATGCCTCCACTAAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11394 ATGCCTCCAGTGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11395 ATGCCTCCATAGCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11396 ATGCCTCGTAGCTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11397 ATGCCTCGTTCGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11398 ATGCCTCGTTTACGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11399 ATGCCTCTCAGTCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11400 ATGCCTCTCGACCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11401 ATGCCTCTCTTCCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11402 ATGCGATAGGCCATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11403 ATGCGATCACCCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11404 ATGCGATCATGTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11405 ATGCGATGTAGATTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11406 ATGCGATGTCAACCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11407 ATGCGATGTCCGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11408 ATGCGATGTTGACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11409 ATGCGATTCCACCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11410 ATGCGATTCGTCCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11411 ATGCGATTCTGCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11412 ATGGAGGAGCATCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11413 ATGGAGGAGCTGGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11414 ATGGAGGAGGAATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11415 ATGGAGGAGTAGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11416 ATGGAGGGTATGGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11417 ATGGAGGGTTAAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11418 ATGGAGGTCTTAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11419 ATGGATCAGACGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11420 ATGGATCAGTTGCGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11421 ATGGATCGTCAAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11422 ATGGATCGTTCTCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11423 ATGGATCTCACGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11424 ATGGATCTCTTCCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11425 ATGGGAGAGATGCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11426 ATGGGAGCAATAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11427 ATGGGAGCACCCAATA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11428 ATGGGAGGTTAGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11429 ATGGGAGGTTGACTAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11430 ATGGGAGTCCAAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11431 ATGGGAGTCTCCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11432 ATGGGTTAGAGAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11433 ATGGGTTAGATCCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11434 ATGGGTTAGTTCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11435 ATGGGTTCAATCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11436 ATGGGTTCAGTAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11437 ATGGGTTGTACAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11438 ATGGGTTGTACCTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11439 ATGGGTTGTATGTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11440 ATGGGTTGTCCCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11441 ATGGGTTGTCGGTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11442 ATGGGTTGTTGCTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11443 ATGGTTGAGACAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11444 ATGGTTGAGCTCTATG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11445 ATGGTTGCAGAGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11446 ATGGTTGGTCTACATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11447 ATGGTTGGTTCGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11448 ATGGTTGTCACACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11449 ATGGTTGTCATAAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11450 ATGGTTGTCATAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11451 ATGGTTGTCCAAGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11452 ATGGTTGTCCACTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11453 ATGGTTGTCCTCACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11454 ATGTCCCAGAGCAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11455 ATGTCCCAGCGTACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11456 ATGTCCCCAATGCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11457 ATGTCCCGTGCCTATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11458 ATGTCTTAGAATTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11459 ATGTCTTAGAGGGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11460 ATGTCTTAGCAAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11461 ATGTCTTAGGCTAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11462 ATGTCTTAGTACGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11463 ATGTCTTAGTTCACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11464 ATGTCTTCACCCAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11465 ATGTCTTCATGTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11466 ATGTCTTCATTCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11467 ATGTCTTGTATAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11468 ATGTCTTGTCCGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11469 ATGTCTTTCAACTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11470 ATGTCTTTCAAGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11471 ATGTCTTTCGCGTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11472 ATGTCTTTCGTCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11473 ATTACCTAGTTCCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11474 ATTACCTCACAATTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11475 ATTACCTCACCTAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11476 ATTACCTTCCGAAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11477 ATTACCTTCTCTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11478 ATTACCTTCTTCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11479 ATTACTCAGAAGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11480 ATTACTCAGACTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11481 ATTACTCAGGCATGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11482 ATTACTCCACTTGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11483 ATTACTCTCACTGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11484 ATTACTCTCGCGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11485 ATTATCCAGGACACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11486 ATTATCCAGGTAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11487 ATTATCCAGTGATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11488 ATTATCCAGTTAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11489 ATTATCCAGTTGCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11490 ATTATCCCACTCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11491 ATTATCCCAGAGTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11492 ATTATCCGTATTGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11493 ATTATCCGTCATGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11494 ATTATCCGTCTTCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11495 ATTATCCGTGGAAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11496 ATTATCCGTGGCTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11497 ATTATCCTCATACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11498 ATTATCCTCGTCTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11499 ATTATCCTCTGTACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11500 ATTATCCTCTTTGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11501 ATTCACTAGAGCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11502 ATTCACTAGATCGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11503 ATTCACTAGATGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11504 ATTCACTAGGAAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11505 ATTCACTAGGGAGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11506 ATTCACTAGGTGGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11507 ATTCACTAGTTCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11508 ATTCACTCACGCTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11509 ATTCACTCATCGATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11510 ATTCACTCATGGGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11511 ATTCACTGTACGGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11512 ATTCACTGTCACCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11513 ATTCACTGTCTCAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11514 ATTCACTTCACTTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11515 ATTCACTTCCTGTACC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11516 ATTCAGGAGAGTACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11517 ATTCAGGTCTTCGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11518 ATTCATCAGATAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11519 ATTCATCAGATCGACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11520 ATTCATCAGGTGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11521 ATTCATCCAGCAGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11522 ATTCATCGTACCTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11523 ATTCATCGTCCAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11524 ATTCATCTCCATGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11525 ATTCATCTCGGATAAA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11526 ATTCCATAGCCAGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11527 ATTCCATAGGATATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11528 ATTCCATAGTGTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11529 ATTCCATCACCGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11530 ATTCCATCAGCAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11531 ATTCCATCAGTTACCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11532 ATTCCATCATGCACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11533 ATTCCATGTATGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11534 ATTCCATGTGGTTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11535 ATTCCATTCTCTATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11536 ATTCCCGAGATACTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11537 ATTCCCGAGCCATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11538 ATTCCCGAGTACAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11539 ATTCCCGAGTCGGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11540 ATTCCCGCAAACTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11541 ATTCCCGCATCTGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11542 ATTCCCGGTAAGCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11543 ATTCCCGGTATTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11544 ATTCCCGGTGGAGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11545 ATTCCCGGTTATGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11546 ATTCCCGTCATGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11547 ATTCCCGTCCGTTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11548 ATTCCCGTCTGAGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11549 ATTCCTAAGAATTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11550 ATTCCTAAGCACCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11551 ATTCCTAAGCTAGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11552 ATTCCTAAGCTTGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11553 ATTCCTAAGGATGTTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11554 ATTCCTAAGTAGCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11555 ATTCCTACACAGCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11556 ATTCCTACACCATTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11557 ATTCCTAGTTAAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11558 ATTCCTATCAACCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11559 ATTCCTATCACTCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11560 ATTCGTTCACTTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11561 ATTCGTTCAGCAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11562 ATTCGTTGTTCGAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11563 ATTCGTTGTTGCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11564 ATTCGTTTCACAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11565 ATTCGTTTCGGTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11566 ATTCGTTTCTAGACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11567 ATTCTACAGCTTTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11568 ATTCTACCAATCGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11569 ATTCTACCACAAATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11570 ATTCTACCACATCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11571 ATTCTACCAGCGACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11572 ATTCTACCATACATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11573 ATTCTACGTCTTACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11574 ATTCTACTCACTTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11575 ATTCTACTCCCATACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11576 ATTCTACTCCTTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11577 ATTCTACTCGGTTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11578 ATTCTACTCTTTGATC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11579 ATTCTTGAGTAAACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11580 ATTCTTGAGTAAGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11581 ATTCTTGTCCGGCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11582 ATTCTTGTCGACGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11583 ATTCTTGTCTGCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11584 ATTGGGTAGTCATCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11585 ATTGGGTGTCGTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11586 ATTGGGTGTGCCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11587 ATTGGGTGTGGGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11588 ATTGGGTTCCACACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11589 ATTGTTCAGATTGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11590 ATTGTTCAGGCCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11591 ATTGTTCAGTCATGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11592 ATTGTTCCACCCGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11593 ATTGTTCGTACAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11594 ATTGTTCGTTGCATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11595 ATTGTTCGTTGGCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11596 ATTTACCAGATCCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11597 ATTTACCAGCTCTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11598 ATTTACCCAGAACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11599 ATTTACCGTATGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11600 ATTTACCTCCAAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11601 ATTTACCTCCTCTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11602 ATTTACCTCTACGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11603 ATTTCACAGACGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11604 ATTTCACAGCATGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11605 ATTTCACAGGTAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11606 ATTTCACAGTACAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11607 ATTTCACAGTAGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11608 ATTTCACCAACTTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11609 ATTTCACGTCATCGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11610 ATTTCACTCACGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11611 ATTTCACTCCACTTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11612 ATTTCACTCGCCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11613 ATTTCACTCTCAATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11614 ATTTCTGCAACAACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11615 ATTTCTGCACGATAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11616 ATTTCTGCAGAACGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11617 ATTTCTGCAGAGTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11618 ATTTCTGCAGCTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11619 ATTTCTGCATCTTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11620 ATTTCTGGTAGGTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11621 ATTTCTGGTCTAGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11622 ATTTCTGGTGAGTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11623 ATTTCTGTCCTCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11624 ATTTCTGTCGCCATAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11625 ATTTCTGTCGTGGACC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11626 ATTTCTGTCTGCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11627 CAAAGAACAAAGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11628 CAAAGAACAAGTGACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11629 CAAAGAACAATGTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11630 CAAAGAACACCACTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11631 CAAAGAACACCCATAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11632 CAAAGAACATGTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11633 CAAAGAAGTATCGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11634 CAAAGAAGTCTGTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11635 CAAAGAAGTTGGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11636 CAAAGAATCTGGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11637 CAACAACCACAGTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11638 CAACAACCACATGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11639 CAACAACGTAGCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11640 CAACAACGTGAGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11641 CAACAACTCAAACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11642 CAACAACTCCTATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11643 CAACAACTCGTTTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11644 CAACAGTAGGGTGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11645 CAACAGTAGTTTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11646 CAACAGTCAAACAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11647 CAACAGTCAAGGTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11648 CAACAGTCAGACAATA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11649 CAACAGTCAGTAACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11650 CAACAGTTCAACTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11651 CAACAGTTCCCGAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11652 CAACAGTTCTTGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11653 CAACCAAGTACCAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11654 CAACCAAGTATACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11655 CAACCAAGTATACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11656 CAACCAAGTCACTTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11657 CAACCAAGTCCGTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11658 CAACCAAGTGACGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11659 CAACCAAGTTAAACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11660 CAACCAATCAGACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11661 CAACCAATCGTACCTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11662 CAACCAATCTTCTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11663 CAACCTCAGCATCGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11664 CAACCTCAGTTGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11665 CAACCTCAGTTGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11666 CAACCTCCACCATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11667 CAACCTCCATCGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11668 CAACCTCCATTGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11669 CAACCTCGTACAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11670 CAACCTCGTATAGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11671 CAACCTCGTCCGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11672 CAACCTCTCAATCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11673 CAACCTCTCGCCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11674 CAACCTCTCTCCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11675 CAACCTCTCTGACGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11676 CAACCTCTCTGAGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11677 CAACGATAGATACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11678 CAACGATAGCATCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11679 CAACGATAGCGAGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11680 CAACGATAGCGGTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11681 CAACGATAGCTAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11682 CAACGATAGCTTTCTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11683 CAACGATCAAACTAAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11684 CAACGATGTAGCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11685 CAACGATGTATTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11686 CAACGATGTGACACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11687 CAACGATGTGCATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11688 CAACGATGTGTTCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11689 CAACGATTCATGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11690 CAACGATTCTACTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11691 CAACGATTCTGAATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11692 CAACGGCAGAGGCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11693 CAACGGCAGCGTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11694 CAACGGCAGGTAGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11695 CAACGGCAGGTGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11696 CAACGGCAGTGAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11697 CAACGGCGTGTTTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11698 CAACGGCGTTCTCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11699 CAACGGCGTTGTATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11700 CAACGGCTCCCATAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11701 CAAGACTAGCCACCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11702 CAAGACTAGCCGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11703 CAAGACTAGCTAAACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11704 CAAGACTCAACAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11705 CAAGACTCAACTAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11706 CAAGACTCACTGCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11707 CAAGACTGTAAGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11708 CAAGAGGAGGCATGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11709 CAAGAGGAGTGCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11710 CAAGAGGCAAGTGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11711 CAAGAGGGTTTGACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11712 CAAGAGGTCATACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11713 CAAGAGGTCCGCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11714 CAAGAGGTCCGTATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11715 CAAGCTAAGAGAGCGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11716 CAAGCTAAGGGACACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11717 CAAGCTAAGTCGTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11718 CAAGCTACAACCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11719 CAAGCTACAGAGACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11720 CAAGCTACAGTTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11721 CAAGCTATCCCTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11722 CAAGCTATCCGTATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11723 CAAGCTATCTCCGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11724 CAAGGGAAGGTGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11725 CAAGGGACAGATTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11726 CAAGGGAGTGAACCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11727 CAAGGGAGTGACTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11728 CAAGGGATCGGCTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11729 CAATACGAGCCTCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11730 CAATACGAGCGTGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11731 CAATACGAGTCTGTAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11732 CAATACGCAACGGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11733 CAATACGCACAATGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11734 CAATACGCATGACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11735 CAATACGCATTCATCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11736 CAATACGGTCCGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11737 CAATACGGTGCGGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11738 CAATACGGTTCGTACA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11739 CAATACGTCCAAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11740 CAATCGAAGAACCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11741 CAATCGAAGGTACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11742 CAATCGACACCCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11743 CAATCGAGTATCCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11744 CAATCGAGTTGTTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11745 CAATCGATCAGCTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11746 CAATCGATCCAACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11747 CAATCGATCGCTAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11748 CAATGACAGCAATTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11749 CAATGACAGGCATCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11750 CAATGACAGTAATACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11751 CAATGACCACGGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11752 CAATGACCATGTTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11753 CAATGACGTAGCTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11754 CAATGACGTAGTATAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11755 CAATGACGTCCCGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11756 CAATGACGTTGAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11757 CAATGACTCCTCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Proliferating endothelial cell nan nan nan CL:0000115 endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11758 CAATGACTCCTTTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11759 CAATGACTCGCATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11760 CAATGACTCGCTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11761 CAATTTCAGAAATTGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11762 CAATTTCAGGGACAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11763 CAATTTCGTACGCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11764 CAATTTCGTTACAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11765 CAATTTCGTTTACACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11766 CAATTTCTCTAGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11767 CAATTTCTCTCCCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11768 CACAACACACATATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11769 CACAACACACGGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11770 CACAACACAGCAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11771 CACAACACAGTTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11772 CACAACAGTATCCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11773 CACAACATCAAACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11774 CACAACATCACTGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11775 CACAACATCATCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11776 CACAACATCATGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11777 CACAACATCGTCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11778 CACACAACAAATCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11779 CACACAACAAATGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11780 CACACAACACATCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11781 CACACAACACGCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11782 CACACAACAGTTTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11783 CACACAAGTAGGAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11784 CACACAAGTCCTGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11785 CACACAAGTTAGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11786 CACACAATCCGTATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11787 CACACAATCGGACTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11788 CACACAATCTTAGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11789 CACAGATAGAATTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11790 CACAGATAGTGCCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11791 CACAGATCAGCAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11792 CACAGATTCCGATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11793 CACAGGCAGCAGCACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11794 CACAGGCAGCCGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11795 CACAGGCAGCGCCATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11796 CACAGGCCAACTCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11797 CACAGGCCAATGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11798 CACAGGCCACCTGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11799 CACAGGCCACGTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11800 CACAGGCCAGACATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11801 CACAGGCGTACGTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11802 CACAGGCGTAGATCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11803 CACAGGCGTCGGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11804 CACAGGCGTGAATGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11805 CACAGGCGTGCCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11806 CACAGGCGTTCAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11807 CACAGGCGTTGACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11808 CACAGGCTCTGGTGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11809 CACAGGCTCTGTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11810 CACATGACACAAATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11811 CACATGACACTGCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11812 CACATGACACTTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11813 CACATGAGTAATGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11814 CACATGAGTCGATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11815 CACATGATCGGTGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11816 CACCAAAAGGTCGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11817 CACCAAAAGTCGAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11818 CACCAAACAACTGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11819 CACCAAAGTCGGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11820 CACCAAAGTGCTGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11821 CACCAAAGTTTCGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11822 CACCAAATCAAGCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11823 CACCGTTAGAGACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11824 CACCGTTGTACTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11825 CACCGTTGTATGCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11826 CACCGTTTCTAGTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11827 CACGAATAGGATTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11828 CACGAATAGGTCATTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11829 CACGAATAGTAGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11830 CACGAATCAACACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11831 CACGAATCACTCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11832 CACGAATCAGGCGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11833 CACGAATCAGGGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11834 CACGAATCATTGTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11835 CACGAATGTACAGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11836 CACGAATGTCGCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11837 CACGAATGTGAGAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11838 CACGAATGTGTGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11839 CACGAATTCAAACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11840 CACGAATTCGCGTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11841 CACGGGTCATTGCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11842 CACGGGTGTCAAAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11843 CACGGGTGTCCAGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11844 CACGGGTTCACTGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11845 CACGGGTTCCACTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11846 CACGGGTTCCGTGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11847 CACGGGTTCCTCACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11848 CACGTGGAGTGCGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11849 CACGTGGCAAGCCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11850 CACGTGGCACTTGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11851 CACGTGGGTACCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11852 CACGTGGGTATTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11853 CACGTGGGTCCAAAGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11854 CACGTGGTCAAGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11855 CACGTGGTCAATGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11856 CACGTGGTCCCTCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11857 CACGTGGTCTTACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11858 CACGTTCAGGTGCTAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11859 CACGTTCCACAAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11860 CACGTTCCACACACGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11861 CACGTTCCAGAAATCA SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11862 CACGTTCCAGAGTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11863 CACGTTCGTAACCCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11864 CACGTTCGTCGGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11865 CACGTTCTCAAGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11866 CACGTTCTCATCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11867 CACGTTCTCTCGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11868 CACTAAGAGCATATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11869 CACTAAGAGCCGGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11870 CACTAAGCACACCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11871 CACTAAGCACAGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11872 CACTAAGCAGGTTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11873 CACTAAGCAGTAACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11874 CACTAAGGTAGCGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11875 CACTAAGGTCACATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11876 CACTAAGTCACGGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11877 CACTAAGTCAGGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11878 CACTAAGTCAGTGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11879 CACTAAGTCTCTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11880 CACTGAAAGGTAAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11881 CACTGAAAGTCTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11882 CACTGAACAATTTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11883 CACTGAACAGCTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11884 CACTGAACAGGACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11885 CACTGAACATAATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11886 CACTGAAGTCACCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11887 CACTGAAGTGTCTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11888 CACTGAATCACAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11889 CACTGAATCCTTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11890 CACTGAATCTAGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11891 CACTGGGCATCGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11892 CACTGGGGTATTTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11893 CACTGGGGTTCCGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11894 CACTGGGGTTGCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11895 CACTGGGTCCCGTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11896 CACTGGGTCCTTCACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11897 CACTGGGTCGTCACCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11898 CACTGTCAGCCTTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11899 CACTGTCCAAACGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11900 CACTGTCCACCTCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11901 CACTGTCCACTGTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11902 CACTGTCCATTCTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11903 CACTGTCGTCAGGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11904 CACTGTCTCGACATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11905 CACTTCGAGGGAGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11906 CACTTCGCATCATCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11907 CACTTCGCATTGGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11908 CACTTCGGTGAAGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11909 CACTTCGGTGAGTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11910 CACTTCGGTGTCTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11911 CACTTCGGTTGTGCAT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11912 CACTTCGTCAATCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11913 CACTTCGTCGCCTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11914 CACTTCGTCTAGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11915 CACTTCGTCTCTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11916 CACTTCGTCTGAACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11917 CAGAGCCAGAGTTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11918 CAGAGCCAGGCACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11919 CAGAGCCAGTAGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11920 CAGAGCCAGTGTTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11921 CAGAGCCCACACGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11922 CAGAGCCCAGCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11923 CAGAGCCCAGTTGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11924 CAGAGCCCATACTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11925 CAGAGCCGTACACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11926 CAGAGCCGTCCGGACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11927 CAGAGCCGTGCCTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11928 CAGAGCCTCATTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11929 CAGAGCCTCCACAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11930 CAGATACAGCAAGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11931 CAGATACCAACGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11932 CAGATACCAGACTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11933 CAGATACCAGTCAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11934 CAGATACGTAGATCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11935 CAGATACGTCAGTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11936 CAGATACGTTTCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11937 CAGATACTCCAAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11938 CAGATACTCGCTGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11939 CAGATACTCGGTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11940 CAGATCAAGCCGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11941 CAGATCAAGGGATCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11942 CAGATCAAGTCTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11943 CAGATCAAGTTAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11944 CAGATCACACCTGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11945 CAGATCACACGCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11946 CAGATCACAGAAACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11947 CAGATCAGTCGTTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11948 CAGATCAGTGCATACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11949 CAGATCAGTGTCCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11950 CAGATCAGTTCTCCTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11951 CAGATCAGTTGTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11952 CAGATCATCACATTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11953 CAGATCATCAGTCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11954 CAGATCATCGTTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11955 CAGATTGAGCTGAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11956 CAGATTGAGGTTCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11957 CAGATTGAGTACGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11958 CAGATTGCAATGAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11959 CAGATTGGTCGTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11960 CAGATTGGTGCACATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11961 CAGATTGGTTGCATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11962 CAGATTGTCACTTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11963 CAGATTGTCCTAAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11964 CAGATTGTCGCTTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11965 CAGCAATAGACCCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11966 CAGCAATAGGCTATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11967 CAGCAATCAGTAGATA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11968 CAGCAATCATGCAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11969 CAGCAATCATGGACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11970 CAGCAATCATTGCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11971 CAGCAATGTATAGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11972 CAGCAATGTATGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11973 CAGCAATGTCGCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11974 CAGCAATGTCTCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11975 CAGCAATTCATCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11976 CAGCAATTCCCGAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11977 CAGCAATTCGATGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11978 CAGCAATTCTATCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11979 CAGCACGCAATACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11980 CAGCACGGTATCAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11981 CAGCACGGTCAATGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11982 CAGCACGGTCCAAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11983 CAGCACGGTGATGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11984 CAGCACGGTTTCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11985 CAGCACGTCCGTGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11986 CAGCAGCAGACCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11987 CAGCAGCAGATGAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11988 CAGCAGCAGCAAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11989 CAGCAGCCAAGGATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11990 CAGCAGCCAATGCAGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11991 CAGCAGCCACCCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11992 CAGCAGCCACGCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11993 CAGCAGCGTGAGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11994 CAGCAGCGTGCTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11995 CAGCAGCGTGGGTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11996 CAGCAGCTCATGAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11997 CAGCAGCTCCATGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11998 CAGCAGCTCGGTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
11999 CAGCCAGAGTACCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12000 CAGCCAGCACGCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12001 CAGCCAGCACTGTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12002 CAGCCAGCAGTTACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12003 CAGCCAGCATCCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12004 CAGCCAGTCAGGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12005 CAGCCAGTCGTTAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12006 CAGCCAGTCTGGCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12007 CAGCCAGTCTGTAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12008 CAGCGTGAGAAATTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12009 CAGCGTGAGTAGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12010 CAGCGTGCACCCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12011 CAGCGTGCAGATTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12012 CAGCGTGCAGCATACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12013 CAGCGTGCATAGGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12014 CAGCGTGGTTTGTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12015 CAGGCCAAGGGTTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12016 CAGGCCAAGTTTGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12017 CAGGCCACACCCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12018 CAGGCCACAGTACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12019 CAGGCCAGTAACCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12020 CAGGCCAGTCACGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12021 CAGGCCAGTCTCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12022 CAGGCCATCGTCCATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12023 CAGGCCATCTGCGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12024 CAGGGCTCAATCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12025 CAGGGCTCAGTCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12026 CAGGGCTGTTGCCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12027 CAGGGCTTCAAGCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12028 CAGGGCTTCACTGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12029 CAGGGCTTCGGCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12030 CAGGTATAGTTTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12031 CAGGTATCAAGTTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12032 CAGGTATCATGGCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12033 CAGGTATTCCATCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12034 CAGGTATTCGAGGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12035 CAGGTATTCGCGTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12036 CAGGTATTCGGACTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12037 CAGGTATTCTCGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12038 CAGTGCGAGGATGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12039 CAGTGCGAGTTAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12040 CAGTGCGCAAGGCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12041 CAGTGCGCAGCTACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12042 CAGTGCGGTAGCTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12043 CAGTGCGGTCAACATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12044 CAGTGCGGTCCGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12045 CAGTGCGTCAGACATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12046 CAGTGCGTCGCATTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12047 CAGTTAGGTCATCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12048 CAGTTAGGTTCAAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12049 CAGTTCCCACTAGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12050 CAGTTCCCAGAGACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12051 CAGTTCCGTCTGTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12052 CAGTTCCTCACGAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12053 CAGTTCCTCCAGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12054 CAGTTCCTCGACATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12055 CAGTTCCTCGTTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12056 CAGTTCCTCTTCGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12057 CATAAGCAGCTCAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12058 CATAAGCAGGATATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12059 CATAAGCAGTATTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12060 CATAAGCCACGTCGTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12061 CATAAGCCACTGCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12062 CATAAGCCAGCAGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12063 CATAAGCGTCGCTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12064 CATAAGCTCCGCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12065 CATACAGCAAGACTGG SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12066 CATACAGCAGCGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12067 CATACAGCAGTGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12068 CATACAGCATTCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12069 CATACAGGTACACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12070 CATACAGGTCTCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12071 CATACAGTCCATAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12072 CATACAGTCCGGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12073 CATACAGTCCTGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12074 CATACCCAGGTCATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12075 CATACCCCACCGAATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12076 CATACCCCAGTGGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12077 CATACCCGTGAGTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12078 CATACCCGTTCGATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12079 CATACCCTCAACCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12080 CATACCCTCCTGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12081 CATACCCTCGAGCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12082 CATACTTAGGTTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12083 CATACTTAGTGCAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12084 CATACTTCACCCTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12085 CATACTTCAGCTTTGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12086 CATACTTGTACCTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12087 CATACTTGTAGAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12088 CATACTTGTTGCTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12089 CATACTTTCACCGACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12090 CATACTTTCCAGCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12091 CATACTTTCCCGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12092 CATACTTTCCTACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12093 CATAGACAGATAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12094 CATAGACAGATTAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12095 CATAGACAGCGTGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12096 CATAGACAGTGATGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12097 CATAGACAGTGGCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12098 CATAGACCAACCGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12099 CATAGACCAAGCGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12100 CATAGACCAAGTTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12101 CATAGACCAGAGTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12102 CATAGACCAGCCGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12103 CATAGACCAGCGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12104 CATAGACCATTAAAGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12105 CATAGACGTACAGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12106 CATAGACGTCTGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12107 CATAGACGTGACCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12108 CATAGACGTTGCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12109 CATAGACGTTGGGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12110 CATAGACTCAGTGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12111 CATCAAGAGAGAATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12112 CATCAAGAGCACAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12113 CATCAAGAGGTTACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12114 CATCAAGAGTAGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12115 CATCAAGCACCGCTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12116 CATCAAGGTATATGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12117 CATCAAGGTCTGCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12118 CATCAAGGTCTGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12119 CATCAAGGTTCCGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12120 CATCCACAGACCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12121 CATCCACAGATGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12122 CATCCACAGCCTTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12123 CATCCACAGCTCGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12124 CATCCACAGGCTCACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12125 CATCCACAGTGACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12126 CATCCACAGTTGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12127 CATCCACCAATTTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12128 CATCCACCACGCAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12129 CATCCACCAGACACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12130 CATCCACCAGAGGACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12131 CATCCACCAGATCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12132 CATCCACCATAGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12133 CATCCACGTAGCGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12134 CATCCACGTCCACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12135 CATCCACGTCGGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12136 CATCCACGTTTACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12137 CATCCACTCCACTTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12138 CATCCACTCCCTTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12139 CATCCACTCCTGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12140 CATCCCAAGATCGACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12141 CATCCCAAGCCTGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12142 CATCCCAAGTATTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12143 CATCCCACATAGAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12144 CATCCCACATCTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12145 CATCCCAGTCTAGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12146 CATCCCAGTTACGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12147 CATCCCATCGCTATTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12148 CATCCGTAGCACAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12149 CATCCGTAGCCAACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12150 CATCCGTCACGCAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12151 CATCCGTCAGAGTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12152 CATCCGTCAGTCCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12153 CATCCGTCATAACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12154 CATCCGTCATCTGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12155 CATCCGTGTCTCGACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12156 CATCCGTGTGAGCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12157 CATCCGTGTTAGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12158 CATCCGTTCAAGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12159 CATCCGTTCCCAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12160 CATCCGTTCTCCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12161 CATCGCTAGACCAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12162 CATCGCTAGAGAGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12163 CATCGCTAGTTAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12164 CATCGCTCAAGACGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12165 CATCGCTCAGTTCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12166 CATCGCTGTGAGTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12167 CATCGCTGTGGTCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12168 CATCGCTTCCGAACGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12169 CATCGCTTCGAAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12170 CATCGCTTCTTCCACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12171 CATCGGGAGACTCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12172 CATCGGGAGAGGCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12173 CATCGGGAGGTCTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12174 CATCGGGCAAGCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12175 CATCGGGCACCTGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12176 CATCGGGCACTACCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12177 CATCGGGCAGAGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12178 CATCGGGTCATCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12179 CATCGGGTCGAGTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12180 CATCGTCCAGGGAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12181 CATCGTCGTACAATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12182 CATCGTCGTGCCTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12183 CATCGTCTCAACTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12184 CATCGTCTCGCGATCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12185 CATCGTCTCTAGCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12186 CATGAGTAGCAGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12187 CATGAGTCACTACCGG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12188 CATGAGTGTATGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12189 CATGAGTTCACGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12190 CATGCAACAACGGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12191 CATGCAACATGAAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12192 CATGCAAGTGATGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12193 CATGCAATCGGAACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12194 CATGCCTAGAAACCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12195 CATGCCTAGCACGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12196 CATGCCTAGCACTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12197 CATGCCTCAAGTGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12198 CATGCCTCACAAAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12199 CATGCCTCAGCACACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12200 CATGCCTCAGGCATTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12201 CATGCCTGTCCTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12202 CATGCGGAGCACCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12203 CATGCGGAGCCGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12204 CATGCGGAGTACAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12205 CATGCGGAGTACAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12206 CATGCGGCAAATGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12207 CATGCGGCAACGTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12208 CATGCGGGTCTTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12209 CATGCGGGTGATGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12210 CATGCGGGTGGAACAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12211 CATGCGGGTTGCCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12212 CATGCGGGTTGGTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12213 CATGCGGTCAGACAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12214 CATGCGGTCCCATTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12215 CATGCGGTCTCAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12216 CATGCGGTCTCCATAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12217 CATGCTCCACGATTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12218 CATGCTCGTACCTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12219 CATGCTCGTACGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12220 CATGCTCGTATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12221 CATGCTCGTATCGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12222 CATGCTCGTGAGATAT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12223 CATGCTCTCCAAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12224 CATGCTCTCCAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12225 CATGCTCTCTGGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12226 CATGCTCTCTGTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12227 CATGGATAGCCTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12228 CATGGATCAAGAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12229 CATGGATCAAGCGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12230 CATGGATCAATTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12231 CATGGATCACTATGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12232 CATGGATCAGACCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12233 CATGGATGTGCATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12234 CATGGATTCACCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12235 CATGGATTCGAACTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12236 CATGGATTCGTTAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12237 CATGGTAAGCCGATTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12238 CATGGTACAAGCAATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12239 CATGGTACACCAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12240 CATGGTACACCCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12241 CATGGTACACCGGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12242 CATGGTAGTAGTATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12243 CATGGTAGTATCCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12244 CATGGTAGTATGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12245 CATGGTAGTATGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12246 CATGGTAGTCGCACGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12247 CATGGTAGTGGGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12248 CATGGTAGTTCCACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12249 CATGGTATCGGCCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12250 CATTCATAGACTAGAT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12251 CATTCATAGCAAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12252 CATTCATAGGGTCACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12253 CATTCATCAAACCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12254 CATTCATCAAGATCCT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12255 CATTCATCACTTGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12256 CATTCATCATTAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12257 CATTCATGTCGATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12258 CATTCCGAGCCATTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12259 CATTCCGCAAGACTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12260 CATTCCGCAATGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12261 CATTCCGCACTCTAGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12262 CATTCCGCATTGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12263 CATTCCGGTAGTAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12264 CATTCCGGTAGTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12265 CATTCCGTCGACCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12266 CATTCCGTCTGCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12267 CATTCCGTCTTCTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12268 CATTCTAAGCGCGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12269 CATTCTACATTGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12270 CATTCTAGTAGGAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12271 CATTCTATCCGCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12272 CATTCTATCCTTTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12273 CATTGAGAGACGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12274 CATTGAGAGACTAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12275 CATTGAGAGTCGGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12276 CATTGAGCAACTGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12277 CATTGAGCAATATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12278 CATTGAGGTCGATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12279 CATTGAGGTGCCGAAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12280 CATTGAGGTTAGGACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12281 CATTGAGTCCCTATTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12282 CATTGAGTCCGATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12283 CATTGAGTCGGTTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12284 CATTGAGTCTGGCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12285 CATTGCCAGAGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12286 CATTGCCAGATGCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12287 CATTGCCAGCCTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12288 CATTGCCAGCGACTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12289 CATTGCCAGGCTAAAT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12290 CATTGCCCAATGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12291 CATTGCCGTATTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12292 CATTGCCGTCAAACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12293 CATTGCCTCACGATCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12294 CATTGCCTCAGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12295 CATTGCCTCCGTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12296 CATTGCCTCGCCTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12297 CATTGTTAGCAAGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12298 CATTGTTAGGGCCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12299 CATTGTTAGGGTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12300 CATTGTTCAACGTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12301 CATTGTTCACGAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12302 CATTGTTCACGAGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12303 CATTGTTCACTTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12304 CATTGTTCAGCTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12305 CATTGTTCAGTAACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12306 CATTGTTGTACTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12307 CATTGTTGTAGGACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12308 CATTGTTGTATCAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12309 CATTGTTGTCTTCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12310 CATTGTTTCGTGCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12311 CATTTCAAGAGCAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12312 CATTTCAAGCAAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12313 CATTTCAAGCCTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12314 CATTTCAAGGGCCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12315 CATTTCAAGTTTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12316 CATTTCACAATCGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12317 CATTTCACACAAATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12318 CATTTCACACAAATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12319 CATTTCACACTGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12320 CATTTCACATTGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12321 CATTTCAGTATGAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12322 CATTTCAGTCCTCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12323 CATTTCAGTGGAAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12324 CATTTCATCTTTGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12325 CCAAGCGAGAGTTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12326 CCAAGCGAGATGCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12327 CCAAGCGAGGAGACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12328 CCAAGCGAGTAGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12329 CCAAGCGCAATAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12330 CCAAGCGCACCCTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12331 CCAAGCGCACCGCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12332 CCAAGCGCACTCCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12333 CCAAGCGGTGGACTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12334 CCAAGCGGTTTCGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12335 CCAAGCGTCATCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12336 CCAAGCGTCTGAGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12337 CCAATGAAGAAGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12338 CCAATGAAGCACCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12339 CCAATGAAGCGTCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12340 CCAATGAAGGATTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12341 CCAATGAAGGCTGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12342 CCAATGAAGGTTACAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12343 CCAATGAAGTAAGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12344 CCAATGACAACTCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12345 CCAATGACAGAGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12346 CCAATGACAGTTGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12347 CCAATGACATCGGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12348 CCAATGACATGACGAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12349 CCAATGAGTCCGGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12350 CCAATGAGTGCCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12351 CCAATGAGTTCTCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12352 CCAATTTAGACCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12353 CCAATTTAGGCTTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12354 CCAATTTAGTACTGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12355 CCAATTTAGTCTCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12356 CCAATTTCACCGTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12357 CCACAAAAGCCTCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12358 CCACAAAAGGAGTATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12359 CCACAAACAACAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12360 CCACAAACACATATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12361 CCACAAACACTCCGAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12362 CCACAAACACTTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12363 CCACAAACAGAGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12364 CCACAAACAGCTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12365 CCACAAACATACTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12366 CCACAAACATGGGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12367 CCACAAAGTCGAAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12368 CCACAAAGTGTCATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12369 CCACAAAGTTTCGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12370 CCACAAAGTTTGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12371 CCACAAATCCGTAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12372 CCACACTAGACGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12373 CCACACTAGACTCGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12374 CCACACTAGAGCCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12375 CCACACTAGCCACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12376 CCACACTCAAGTTGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12377 CCACACTCACCGTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12378 CCACACTCAGTGTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12379 CCACACTCATCCTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12380 CCACACTGTCTTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12381 CCACACTGTTGCAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12382 CCACACTTCTGACGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12383 CCACACTTCTGTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12384 CCACCATAGCCACCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12385 CCACCATAGGGTAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12386 CCACCATAGTTGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12387 CCACCATCAAAGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12388 CCACCATCACTATGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12389 CCACCATGTATCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12390 CCACCATGTCCTTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12391 CCACCATGTCGGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12392 CCACCATGTGTAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12393 CCACCATGTTGGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12394 CCACCATTCAGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12395 CCACCATTCCCAAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12396 CCACCATTCCGTGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12397 CCACCATTCCTTCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12398 CCACCATTCTGCTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12399 CCACGAGAGAACTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12400 CCACGAGAGCACTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12401 CCACGAGAGCGAGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12402 CCACGAGAGGATGAGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12403 CCACGAGAGGTTGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12404 CCACGAGCACACTTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12405 CCACGAGCACGAAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12406 CCACGAGCAGTCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12407 CCACGAGCATGTGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12408 CCACGAGGTATTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12409 CCACGAGGTCCTGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12410 CCACGAGGTTCTTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12411 CCACGTTCAAGATCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12412 CCACGTTCAAGTCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12413 CCACGTTCATCAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12414 CCACGTTGTTCTGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12415 CCACGTTTCACCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12416 CCACTTGAGAGGATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12417 CCACTTGAGAGTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12418 CCACTTGAGCACTCCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12419 CCACTTGCAACAAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12420 CCACTTGCAATGGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12421 CCACTTGCATTCAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12422 CCACTTGGTAATCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12423 CCACTTGGTACCCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12424 CCACTTGGTATGCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12425 CCACTTGGTTTGAACC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12426 CCACTTGTCTGGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12427 CCATAAGAGCGAGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12428 CCATAAGAGGAATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12429 CCATAAGAGGTCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12430 CCATAAGAGTGCTACT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12431 CCATAAGCAATTTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12432 CCATAAGCACTGGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12433 CCATAAGCAGGCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12434 CCATAAGCAGGTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12435 CCATAAGGTAGCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12436 CCATAAGTCCTCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12437 CCATAAGTCGGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12438 CCATCACAGAGTCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12439 CCATCACAGGATGAGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12440 CCATCACAGGCCTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12441 CCATCACAGTGCGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12442 CCATCACCAAGAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12443 CCATCACCACTTTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12444 CCATCACCAGTACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12445 CCATCACCATTCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12446 CCATCACGTCAGTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12447 CCATCACGTCATCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12448 CCATCACGTTGGGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12449 CCATCACTCCCATTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12450 CCATCACTCGGTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12451 CCATCACTCTTCCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12452 CCCAACTAGAGGACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12453 CCCAACTAGCGCCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12454 CCCAACTAGCGCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12455 CCCAACTAGTGCTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12456 CCCAACTCAAGGCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12457 CCCAACTCACCAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12458 CCCAACTCAGACCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12459 CCCAACTGTACGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12460 CCCAACTGTAGTCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12461 CCCAACTGTATGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12462 CCCAACTGTATTCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12463 CCCAACTGTCAAAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12464 CCCAACTGTTCAAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12465 CCCAACTTCAGATTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12466 CCCATTGAGATCCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12467 CCCATTGAGCTAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12468 CCCATTGAGGCACTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12469 CCCATTGCAACTAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12470 CCCATTGCAGAACGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12471 CCCATTGCAGCAAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12472 CCCATTGGTAGCTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12473 CCCATTGGTGGATTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12474 CCCATTGGTTTCCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12475 CCCATTGTCCTTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12476 CCCATTGTCGTCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12477 CCCGAAGAGACTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12478 CCCGAAGAGGCCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12479 CCCGAAGCACAAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12480 CCCGAAGCACTTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12481 CCCGAAGCAGACCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12482 CCCGAAGCAGAGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12483 CCCGAAGCAGTTGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12484 CCCGAAGCATAAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12485 CCCGAAGCATAAGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12486 CCCGAAGTCACCGACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12487 CCCGAAGTCGTTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12488 CCCGAAGTCTCGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12489 CCCGGAAAGAAGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12490 CCCGGAAAGAGTTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12491 CCCGGAAAGGCTTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12492 CCCGGAAGTCGCACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12493 CCCGGAAGTGCCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12494 CCCGGAATCTTAGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12495 CCCTAACAGAGCAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12496 CCCTAACAGATTAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12497 CCCTAACAGTCATCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12498 CCCTAACGTAAGTTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12499 CCCTAACGTTATTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12500 CCCTAACTCACCGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12501 CCCTAACTCATCGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12502 CCCTAACTCCAAGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12503 CCCTAACTCGCTTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12504 CCCTAACTCTGGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12505 CCCTCAACAGCGTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12506 CCCTCAACAGTGGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12507 CCCTCAACATGTTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12508 CCCTCAAGTACCCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12509 CCCTCAAGTATGAGGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12510 CCCTCAAGTCTACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12511 CCCTCAAGTTACACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12512 CCCTCAATCACAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12513 CCCTCAATCCCGTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12514 CCCTCAATCTGCGAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12515 CCCTCTCAGAAGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12516 CCCTCTCAGAATCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12517 CCCTCTCAGCCGTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12518 CCCTCTCCAGCACCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12519 CCCTCTCCAGCGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12520 CCCTCTCCAGTATACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12521 CCCTCTCCATCCGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12522 CCCTCTCCATCGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12523 CCCTCTCCATGAATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12524 CCCTCTCGTAGAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12525 CCCTCTCGTGAGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12526 CCCTCTCGTGCCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12527 CCCTGATAGAGCACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12528 CCCTGATCAACACGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12529 CCCTGATCACAGTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12530 CCCTGATGTAGACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12531 CCCTGATGTAGCCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12532 CCCTGATGTGAGCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12533 CCCTGATGTGCATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12534 CCCTGATGTGCCTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12535 CCCTGATGTGGCTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12536 CCCTGATTCAGCTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12537 CCCTGATTCGCCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12538 CCCTTAGAGGAACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12539 CCCTTAGCAGACGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12540 CCCTTAGCAGTAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12541 CCCTTAGCATCGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12542 CCCTTAGCATGCGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12543 CCCTTAGCATGGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12544 CCCTTAGGTACAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12545 CCCTTAGGTCCCTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12546 CCCTTAGGTGCATCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12547 CCCTTAGGTTGTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12548 CCCTTAGTCCATGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12549 CCCTTAGTCCGAGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12550 CCCTTAGTCGTTAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12551 CCGAACGAGCATATGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12552 CCGAACGAGGCATCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12553 CCGAACGAGTGTACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12554 CCGAACGCATAATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12555 CCGAACGCATCTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12556 CCGAACGGTCAACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12557 CCGAACGGTCTTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12558 CCGAACGGTTCGGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12559 CCGAACGGTTTCGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12560 CCGAACGTCATGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12561 CCGAACGTCCCGAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12562 CCGAACGTCTTAGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12563 CCGATCTAGGATTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12564 CCGATCTCACACGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12565 CCGATCTCACCTCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12566 CCGATCTGTTCCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12567 CCGATCTTCAGGTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12568 CCGATCTTCTCCCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12569 CCGATCTTCTCTCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12570 CCGATGGAGCAATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12571 CCGATGGAGCCTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12572 CCGATGGAGCGTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12573 CCGATGGAGGCTAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12574 CCGATGGAGTAACGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12575 CCGATGGAGTAATACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12576 CCGATGGAGTCCTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12577 CCGATGGCAATAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12578 CCGATGGCAGAGATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12579 CCGATGGCAGTTAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12580 CCGATGGTCAAAGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12581 CCGATGGTCAAGTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12582 CCGCAAGCAAGTTGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12583 CCGCAAGCAATGTGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12584 CCGCAAGCACAGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12585 CCGCAAGCACCGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12586 CCGCAAGGTCACTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12587 CCGCAAGGTGCCTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12588 CCGCAAGTCATAGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12589 CCGCAAGTCCGGGACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12590 CCGCAAGTCTACAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12591 CCGGACACAGTATACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12592 CCGGACAGTCTTGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12593 CCGGACAGTTCTCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12594 CCGGACATCATTCATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12595 CCGGACATCGCAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12596 CCGGACATCGCGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12597 CCGGACATCTGGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12598 CCGGGTAAGTGGCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12599 CCGGGTACAGGTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12600 CCGGGTACAGTCGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12601 CCGGGTACATGATCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12602 CCGGGTAGTACTGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12603 CCGGGTAGTATCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12604 CCGGGTAGTCGCATTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12605 CCGGGTATCACTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12606 CCGGGTATCCACAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12607 CCGGGTATCTCGACGG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12608 CCGGTAGAGAAACACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12609 CCGGTAGAGAGCAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12610 CCGGTAGAGTGCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12611 CCGGTAGGTACAAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12612 CCGGTAGGTCACGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12613 CCGGTAGGTCCACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12614 CCGGTAGGTCTGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12615 CCGGTAGGTGCTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12616 CCGGTAGTCGTTGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12617 CCGGTAGTCTGAGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12618 CCGGTGAAGATTAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12619 CCGGTGAAGCAACCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12620 CCGGTGACAGCGTATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12621 CCGGTGACATTCAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12622 CCGGTGAGTAGGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12623 CCGGTGAGTATTCCTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12624 CCGGTGAGTTCATCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12625 CCGGTGAGTTGAGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12626 CCGGTGATCACCGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12627 CCGGTGATCGAACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12628 CCGGTGATCGGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12629 CCGGTGATCGGCATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12630 CCGGTGATCTACACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12631 CCGTAGGAGAGGTATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12632 CCGTAGGCAATAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12633 CCGTAGGCAATCGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12634 CCGTAGGCACACCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12635 CCGTAGGCACGGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12636 CCGTAGGCACGGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12637 CCGTAGGCAGCGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12638 CCGTAGGCATCGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12639 CCGTAGGCATGGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12640 CCGTAGGGTCGTTGCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12641 CCGTAGGGTGCTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12642 CCGTAGGGTGTGCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12643 CCGTAGGTCAATCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12644 CCGTAGGTCACCTTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12645 CCGTAGGTCGATGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12646 CCGTGAGAGCCACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12647 CCGTGAGCAGCCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12648 CCGTGAGGTGCCCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12649 CCGTGAGGTTCTAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12650 CCGTGAGTCAGCTTGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12651 CCGTGAGTCCATTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12652 CCGTGAGTCCTAGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12653 CCGTGAGTCCTCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12654 CCGTGAGTCTAAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12655 CCGTTCAAGAATACAC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12656 CCGTTCAAGCAAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12657 CCGTTCAAGCCAAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12658 CCGTTCAAGCCTGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12659 CCGTTCAAGCGCACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12660 CCGTTCAAGCGTGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12661 CCGTTCACATATGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12662 CCGTTCAGTCCACATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12663 CCGTTCAGTCGTAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12664 CCGTTCAGTCTACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12665 CCGTTCAGTTCCTAGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12666 CCGTTCAGTTCGGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12667 CCGTTCATCATCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12668 CCGTTCATCTGCGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12669 CCTAACCCACACCAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12670 CCTAACCCACCAGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12671 CCTAACCCACCCTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12672 CCTAACCCACTAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12673 CCTAACCCATGAAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12674 CCTAACCGTAACACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12675 CCTAACCGTAGGACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12676 CCTAACCGTATACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12677 CCTAACCGTCACGTGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12678 CCTAACCGTCTCACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12679 CCTAACCTCCATTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12680 CCTAACCTCGAGTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12681 CCTAACCTCGATGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12682 CCTAAGAAGCGTGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12683 CCTAAGAAGGAGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12684 CCTAAGAAGGCAGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12685 CCTAAGAAGGCTTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12686 CCTAAGAAGGTCGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12687 CCTAAGAAGTCAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12688 CCTAAGACAATACCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12689 CCTAAGAGTGACCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12690 CCTAAGATCGTAGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12691 CCTACGTAGGCTGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12692 CCTACGTAGTGCTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12693 CCTACGTCAGGTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12694 CCTACGTCATGGGAAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12695 CCTACGTGTGAATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12696 CCTACGTTCAATCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12697 CCTACGTTCATGGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12698 CCTACGTTCCCGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12699 CCTATCGAGTAAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12700 CCTATCGCAGCTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12701 CCTATCGCATCACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12702 CCTATCGGTGGAGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12703 CCTATCGTCGGAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12704 CCTCAACAGAGCATAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12705 CCTCAACAGCCAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12706 CCTCAACCAGGCGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12707 CCTCAACCATGCAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12708 CCTCAACGTCGAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12709 CCTCAACGTGCACATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12710 CCTCAACGTTGTGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12711 CCTCAACTCATCGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12712 CCTCAACTCGTAGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12713 CCTCAACTCTTTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12714 CCTCACAAGTGGTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12715 CCTCACACAAAGGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12716 CCTCACACAACACACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12717 CCTCACACAAGTGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12718 CCTCACACACCCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12719 CCTCACACACGTAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12720 CCTCACACACTCCGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12721 CCTCACACAGCCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12722 CCTCACAGTACTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12723 CCTCACAGTTGGTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12724 CCTCACATCCGTGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12725 CCTCACATCCTGTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12726 CCTCACATCGCTGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12727 CCTCAGTAGAGTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12728 CCTCAGTAGATGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12729 CCTCAGTAGCACCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12730 CCTCAGTAGGAACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12731 CCTCAGTAGTGCAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12732 CCTCAGTCAAACTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12733 CCTCAGTCAGTTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12734 CCTCAGTCATCGAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12735 CCTCAGTGTGAGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12736 CCTCAGTGTGGTAATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12737 CCTCAGTTCAGAATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12738 CCTCAGTTCGGCATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12739 CCTCAGTTCTATCACT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12740 CCTCATGAGATGCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12741 CCTCATGAGTAGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12742 CCTCATGAGTCTGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12743 CCTCATGCAATCGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12744 CCTCATGCAGCGTTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12745 CCTCATGGTACGACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12746 CCTCATGGTCATAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12747 CCTCATGGTCCTGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12748 CCTCATGGTGCCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12749 CCTCATGGTTATGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12750 CCTCATGTCTCGACCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12751 CCTCATGTCTGAGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12752 CCTCCAAAGCCTCACG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12753 CCTCCAACAAAGACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12754 CCTCCAACAAAGGGTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12755 CCTCCAACAATGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12756 CCTCCAACATGTGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12757 CCTCCAAGTAACACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12758 CCTCCAAGTACTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12759 CCTCCAAGTCTCACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12760 CCTCCAAGTGCGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12761 CCTCCAATCAAGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12762 CCTCCAATCATGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12763 CCTCCAATCGAATCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12764 CCTCCAATCGTTACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12765 CCTCCTCAGCTAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12766 CCTCCTCAGTAGAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12767 CCTCCTCAGTTCCTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12768 CCTCCTCCAAGTGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12769 CCTCCTCCACAAATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12770 CCTCCTCCAGGCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12771 CCTCCTCCAGTCGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12772 CCTCCTCCATGACGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12773 CCTCCTCGTTTGCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12774 CCTCCTCTCAGCCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12775 CCTCCTCTCTCATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12776 CCTCTAGAGAATTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12777 CCTCTAGAGAGATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12778 CCTCTAGGTAATTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12779 CCTCTAGGTCCCGGTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12780 CCTCTAGGTCTACACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12781 CCTCTAGGTCTCGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12782 CCTCTAGTCAGACCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12783 CCTCTAGTCCCAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12784 CCTCTAGTCTAAGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12785 CCTCTAGTCTCTTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12786 CCTCTCCAGAGCTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12787 CCTCTCCAGCCTATCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12788 CCTCTCCAGCGCCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12789 CCTCTCCAGGCACTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12790 CCTCTCCGTAGATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12791 CCTCTCCGTATGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12792 CCTCTCCGTCGAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12793 CCTCTCCGTGGGAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12794 CCTCTCCGTTGTTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12795 CCTCTCCTCAAGGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12796 CCTGCATAGACGCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12797 CCTGCATAGTGTTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12798 CCTGCATCAATTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12799 CCTGCATCACCTGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12800 CCTGCATCAGACCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12801 CCTGCATGTAAGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12802 CCTGCATGTAGCGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12803 CCTGCATGTCTGCGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12804 CCTGCATGTTGATCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12805 CCTGCATGTTTGAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12806 CCTGCATTCAGTGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12807 CCTGCATTCCAAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12808 CCTGCATTCGGCTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12809 CCTGTTGAGACTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12810 CCTGTTGAGGAGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12811 CCTGTTGCAGACATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12812 CCTGTTGCAGCAGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12813 CCTGTTGGTCATCGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12814 CCTGTTGGTGAGACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12815 CCTGTTGTCAAAGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12816 CCTGTTGTCTATCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12817 CCTTCAGAGCATCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12818 CCTTCAGAGTGAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12819 CCTTCAGAGTTAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12820 CCTTCAGAGTTAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12821 CCTTCAGCACTCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12822 CCTTCAGCAGATAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12823 CCTTCAGCAGGAATAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12824 CCTTCAGCAGTCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12825 CCTTCAGCATCATTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12826 CCTTCAGCATTGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12827 CCTTCAGGTCAGACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12828 CCTTCAGGTGGTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12829 CCTTCAGGTTGATGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12830 CCTTCAGGTTGCTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12831 CCTTCAGGTTGGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12832 CCTTCAGTCCACGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12833 CCTTCAGTCCCAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12834 CCTTCAGTCTTTGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12835 CCTTGTGAGGGTGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12836 CCTTGTGAGTCGGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12837 CCTTGTGAGTTACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12838 CCTTGTGCAATACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12839 CCTTGTGCAGAATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12840 CCTTGTGCATAATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12841 CCTTGTGCATCAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12842 CCTTGTGGTAACCCGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12843 CCTTGTGGTAGACAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12844 CCTTGTGGTCGAAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12845 CCTTGTGGTTAACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12846 CCTTGTGGTTTCGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12847 CCTTGTGTCATTTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12848 CCTTGTGTCCATTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12849 CCTTTGGAGGCGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12850 CCTTTGGAGTTCCGGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12851 CCTTTGGCAAGGCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12852 CCTTTGGCAATAGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12853 CCTTTGGGTACAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12854 CCTTTGGGTCCACACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12855 CCTTTGGTCTCCATAT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12856 CCTTTGGTCTTTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12857 CGAAGGACACTGCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12858 CGAAGGACAGATCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12859 CGAAGGAGTAACGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12860 CGAAGGAGTCCAGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12861 CGAAGGAGTCTGCGCA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12862 CGAAGGAGTTTCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12863 CGAAGGATCGTTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12864 CGAAGTTAGAAGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12865 CGAAGTTAGACGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12866 CGAAGTTAGTGCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12867 CGAAGTTCAACGCATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12868 CGAAGTTCACCAAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12869 CGAAGTTCAGGTTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12870 CGAAGTTGTCTGTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12871 CGAAGTTGTGCGGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12872 CGAAGTTGTGTTCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12873 CGAAGTTGTGTTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12874 CGAAGTTTCAAGTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12875 CGAAGTTTCCAGCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12876 CGAAGTTTCCTCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12877 CGAAGTTTCGAGCACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12878 CGAATTGAGAGGATCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12879 CGAATTGAGAGGCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12880 CGAATTGAGAGGTTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12881 CGAATTGAGCATATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12882 CGAATTGAGTGCTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12883 CGAATTGCAAACTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12884 CGAATTGCAAGTGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12885 CGAATTGCAATCGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12886 CGAATTGCATAATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12887 CGAATTGGTAGCTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12888 CGAATTGGTATAGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12889 CGAATTGGTCGTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12890 CGAATTGGTCTTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12891 CGAATTGGTTGCATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12892 CGAATTGGTTTCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12893 CGAATTGTCTCCAATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12894 CGACAGCAGTGCGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12895 CGAGAAGAGGTCGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12896 CGAGAAGCACATACGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12897 CGAGAAGGTAAGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12898 CGAGAAGGTGAGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12899 CGAGAAGGTGCGGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12900 CGAGAAGGTGTGTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12901 CGAGAAGGTGTTAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12902 CGAGAAGGTTGGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12903 CGAGAAGGTTTCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12904 CGAGAAGTCGACCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12905 CGAGGAAAGAATTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12906 CGAGGAAAGGTTGACG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12907 CGAGGAACAACTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12908 CGAGGAACACGCACCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12909 CGAGGAACATGGGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12910 CGAGGAAGTACTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12911 CGAGGAAGTTAAGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12912 CGAGGAATCCGATTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12913 CGAGGAATCGTTGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12914 CGAGGCTAGATTTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12915 CGAGGCTAGGAGGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12916 CGAGGCTAGTATGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12917 CGAGGCTCACGACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12918 CGAGGCTGTACGAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12919 CGAGGCTGTTCAATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12920 CGAGGCTGTTCTAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12921 CGAGGCTTCCACTTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12922 CGAGGCTTCGCCAATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12923 CGAGTGCAGCTACGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12924 CGAGTGCAGTCGCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12925 CGAGTGCCAAGAGATT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12926 CGAGTGCCAAGATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12927 CGAGTGCCAAGGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12928 CGAGTGCCACTCACTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12929 CGAGTGCCAGCGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12930 CGAGTGCCAGTTTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12931 CGAGTGCCATACATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12932 CGAGTGCGTGTTACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12933 CGAGTGCGTGTTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12934 CGAGTGCGTTCGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12935 CGAGTGCGTTTGAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12936 CGAGTGCTCATGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12937 CGAGTGCTCCGCACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12938 CGAGTGCTCGTAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12939 CGAGTGCTCTGCTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12940 CGAGTTAAGATTGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12941 CGAGTTAAGCGTGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12942 CGAGTTACACCGCTGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12943 CGAGTTAGTACGCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12944 CGAGTTATCATAGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12945 CGAGTTATCGCAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12946 CGAGTTATCGTGCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12947 CGATCGGAGCCAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12948 CGATCGGAGTCTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12949 CGATCGGCACGGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12950 CGATCGGCACTCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12951 CGATCGGCACTGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12952 CGATCGGCATGATCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12953 CGATCGGGTCCAATCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12954 CGATCGGGTGAGACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12955 CGATCGGGTGTTACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12956 CGATCGGGTTTGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12957 CGATCGGTCGAGTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12958 CGATCGGTCTCCTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12959 CGATGCGAGGACTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12960 CGATGCGAGTCTAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12961 CGATGCGCAAACGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12962 CGATGCGCAAGCTACT SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12963 CGATGCGCAGTCAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12964 CGATGCGGTACCTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12965 CGATGCGGTAGGGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12966 CGATGCGGTCATCGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12967 CGATGCGGTTGACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12968 CGATGCGTCAAGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12969 CGATGCGTCCATCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12970 CGATGCGTCCCATAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12971 CGATGCGTCGCTTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12972 CGATGCGTCGTCCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12973 CGATGGCAGACCTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12974 CGATGGCCAATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12975 CGATGGCCACATTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12976 CGATGGCCAGAGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12977 CGATGGCCATGTTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12978 CGATGGCGTCTTCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12979 CGATGGCTCCGTAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12980 CGCAGGTAGCTGACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12981 CGCAGGTAGTCAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12982 CGCAGGTAGTTACGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12983 CGCAGGTAGTTCACTG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12984 CGCAGGTCAGCCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12985 CGCAGGTCATCGATAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12986 CGCAGGTGTATCGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12987 CGCAGGTTCACATACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12988 CGCAGGTTCATCGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12989 CGCAGGTTCTATTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12990 CGCATAAAGAGCATTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12991 CGCATAAAGCGGTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12992 CGCATAAAGGCAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12993 CGCATAAAGGTACTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12994 CGCATAAAGTTCCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12995 CGCATAACAGAACGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12996 CGCATAACATGGTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12997 CGCATAAGTATACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12998 CGCATAATCCCGTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
12999 CGCATAATCCGTGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13000 CGCATAATCCTGTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13001 CGCATAATCGAGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13002 CGCATAATCGCCTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13003 CGCATAATCGTCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13004 CGCATGGAGGAGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13005 CGCATGGAGGGCCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13006 CGCATGGCACACCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13007 CGCATGGCACCAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13008 CGCATGGCACTACCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13009 CGCATGGTCACTACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13010 CGCATGGTCCCGAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13011 CGCCAGAAGAGGGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13012 CGCCAGAAGCCTTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13013 CGCCAGAAGGTCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13014 CGCCAGACAACCAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13015 CGCCAGACACAGTGAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13016 CGCCAGACACGAGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13017 CGCCAGACAGATTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13018 CGCCAGAGTACCTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13019 CGCCAGAGTAGCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13020 CGCCAGAGTGAATATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13021 CGCCAGAGTGCATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13022 CGCCAGAGTGTCATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13023 CGCCAGATCTAGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13024 CGCCATTAGAGTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13025 CGCCATTAGCTGTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13026 CGCCATTAGTAGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13027 CGCCATTCAGCTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13028 CGCCATTGTCGCAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13029 CGCCATTGTGACTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13030 CGCCATTGTGTACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13031 CGCCATTTCAGTCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13032 CGCCATTTCTAGTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13033 CGCGTGAAGACGACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13034 CGCGTGAAGCTTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13035 CGCGTGACACAATGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13036 CGCGTGACAGATCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13037 CGCGTGACAGGAGGAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13038 CGCGTGAGTAGATCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13039 CGCGTGATCTCTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13040 CGGAACCAGAATTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13041 CGGAACCAGCGTGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13042 CGGAACCAGGATCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13043 CGGAACCCAGAAGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13044 CGGAACCCATAATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13045 CGGAACCGTAGATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13046 CGGAACCGTTTACGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13047 CGGAACCTCGGTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13048 CGGAACCTCTCCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13049 CGGAATTAGAAAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13050 CGGAATTAGAGTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13051 CGGAATTAGTACTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13052 CGGAATTAGTGTAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13053 CGGAATTGTTCCGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13054 CGGAATTTCACCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13055 CGGAATTTCGCGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13056 CGGACACAGCCATTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13057 CGGACACCAACAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13058 CGGACACGTGATAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13059 CGGACACGTGGCTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13060 CGGACACTCGAGAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13061 CGGACACTCTAGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13062 CGGAGAAAGATTGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13063 CGGAGAAAGCAACCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13064 CGGAGAAAGGACGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13065 CGGAGAACAATCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13066 CGGAGAACATCGCTCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13067 CGGAGAAGTTTATGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13068 CGGAGAATCCCAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13069 CGGAGAATCTACCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13070 CGGCAGTAGCACGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13071 CGGCAGTAGCTAATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13072 CGGCAGTAGGGAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13073 CGGCAGTAGGTCCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13074 CGGCAGTAGTGCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13075 CGGCAGTCAAGCCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13076 CGGCAGTCAGCTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13077 CGGCAGTCAGGAGACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13078 CGGCAGTCATCGGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13079 CGGCAGTGTAATGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13080 CGGCAGTGTACGCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13081 CGGCAGTGTAGTATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13082 CGGCAGTGTCAGCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13083 CGGCAGTGTGACTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13084 CGGCAGTGTGTTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13085 CGGCAGTGTTATGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13086 CGGCAGTTCGACCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13087 CGGCAGTTCGCATGAT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13088 CGGGACTAGAGTGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13089 CGGGACTAGGCGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13090 CGGGACTCACACGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13091 CGGGACTCATGAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13092 CGGGACTCATTCGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13093 CGGGACTGTATTCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13094 CGGGACTGTGCGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13095 CGGGACTGTTCCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13096 CGGGACTTCATCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13097 CGGGACTTCCACTTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13098 CGGGACTTCCCTAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13099 CGGGCATAGCAACTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13100 CGGGCATAGGAACTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13101 CGGGCATCATACGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13102 CGGGCATGTAACACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13103 CGGGCATGTTAGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13104 CGGGCATTCACGAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13105 CGGGCATTCCGAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13106 CGGGCATTCCTCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13107 CGGGCATTCGGTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13108 CGGGTCAAGCGAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13109 CGGGTCAAGTACCATC SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13110 CGGGTCACAGCTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13111 CGGGTCAGTGGAAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13112 CGGGTCAGTTCCCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13113 CGGGTCAGTTTACTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13114 CGGGTCATCATATGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13115 CGGGTCATCCCGAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13116 CGGGTCATCCCTCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13117 CGGGTCATCGGCATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13118 CGGGTCATCGTGGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13119 CGGGTGTAGATTAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13120 CGGGTGTAGGACACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13121 CGGGTGTCAGAACTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13122 CGGGTGTGTAAGATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13123 CGGGTGTTCTTGGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13124 CGGTCAGAGGGCCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13125 CGGTCAGAGTGACACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13126 CGGTCAGCACTATGTG SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13127 CGGTCAGCATTCAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13128 CGGTCAGGTGTTGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13129 CGGTCAGGTTGCTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13130 CGGTCAGTCTCTCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13131 CGTAAGTCAAAGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13132 CGTAAGTGTCACTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13133 CGTAAGTGTCCACATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13134 CGTAAGTGTGCCGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13135 CGTAAGTGTGGAACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13136 CGTAAGTTCCAATGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13137 CGTAAGTTCGTGCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13138 CGTAAGTTCTACGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13139 CGTAAGTTCTGCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13140 CGTAATGCAACAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13141 CGTAATGCAAGGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13142 CGTAATGCAATCTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13143 CGTAATGCACGACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13144 CGTAATGGTACTTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13145 CGTAATGGTCAACATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13146 CGTAATGGTGATACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13147 CGTAATGTCCGTGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13148 CGTAATGTCGACGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13149 CGTAGTAAGGCATTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13150 CGTAGTAAGGCTTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13151 CGTAGTAAGGGCTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13152 CGTAGTAAGGTTCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13153 CGTAGTACAAGAATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13154 CGTAGTAGTCCACACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13155 CGTAGTATCCCAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13156 CGTAGTATCGGAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13157 CGTAGTATCTGGCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13158 CGTCAAACAAATCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13159 CGTCAAACAAGCGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13160 CGTCAAACAGAGGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13161 CGTCAAAGTAGCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13162 CGTCAAAGTAGTCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13163 CGTCAAAGTCGAACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13164 CGTCAAATCAGTGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13165 CGTCCATAGAAGTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13166 CGTCCATAGACATACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13167 CGTCCATAGGCAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13168 CGTCCATAGGCAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13169 CGTCCATCAAATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13170 CGTCCATCACAGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13171 CGTCCATGTTATGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13172 CGTCCATTCGAAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13173 CGTGAATAGGGCTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13174 CGTGAATCAATACCCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13175 CGTGAATCATGAAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13176 CGTGAATGTATTTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13177 CGTGAATGTCCAGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13178 CGTGAATGTGATTGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13179 CGTGAATGTGTACATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13180 CGTGAATGTTCCATTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13181 CGTGAATTCACGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13182 CGTGAATTCGGAGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13183 CGTGATACAACTGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13184 CGTGATACATATCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13185 CGTGATAGTAACATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13186 CGTGATAGTATTTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13187 CGTGATAGTCTAATCG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13188 CGTGATATCGTTCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13189 CGTGATATCTCGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13190 CGTGCTTAGACCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13191 CGTGCTTAGACCTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13192 CGTGCTTAGAGGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13193 CGTGCTTAGTCTGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13194 CGTGCTTCAAGCGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13195 CGTGCTTCACGTGTGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13196 CGTGCTTCAGAAACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13197 CGTGCTTCATGAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13198 CGTGCTTGTCAGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13199 CGTGCTTGTTCTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13200 CGTGCTTTCACTACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13201 CGTGCTTTCTGAATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13202 CGTGTCTAGTTGCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13203 CGTGTCTCAAGTGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13204 CGTGTCTCAATGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13205 CGTGTCTCATAGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13206 CGTGTCTGTAGTCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13207 CGTGTCTGTCAACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13208 CGTGTCTGTTAGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13209 CGTGTCTTCCAACTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13210 CGTGTCTTCGGCATAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13211 CGTTAGAAGAGGGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13212 CGTTAGAAGCCGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13213 CGTTAGAAGCGTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13214 CGTTAGAAGGAACTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13215 CGTTAGAAGGGTCACA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13216 CGTTAGACAAAGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13217 CGTTAGACAAGGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13218 CGTTAGACAGAATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13219 CGTTAGACATACATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13220 CGTTAGACATTCAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13221 CGTTAGAGTCGTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13222 CGTTAGAGTGGTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13223 CGTTAGATCATTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13224 CGTTCTGAGAATAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13225 CGTTCTGAGAATCGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13226 CGTTCTGAGACGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13227 CGTTCTGAGCCTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13228 CGTTCTGAGCGTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13229 CGTTCTGAGGCACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13230 CGTTCTGAGGTCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13231 CGTTCTGCAGACAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13232 CGTTCTGCAGCTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13233 CGTTCTGCATCGCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13234 CGTTCTGGTATTCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13235 CGTTCTGGTCGGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13236 CGTTCTGTCAAACTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13237 CGTTCTGTCGTTCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13238 CGTTGGGAGCGAGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13239 CGTTGGGAGGCGCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13240 CGTTGGGAGGGAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13241 CGTTGGGAGTATGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13242 CGTTGGGCAACCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13243 CGTTGGGCACAGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13244 CGTTGGGCAGTTACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13245 CGTTGGGCATCTAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13246 CGTTGGGGTCTCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13247 CGTTGGGGTGGCCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13248 CGTTGGGGTGGTCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13249 CGTTGGGTCGGTAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13250 CTAACCCAGAACAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13251 CTAACCCAGACTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13252 CTAACCCAGATGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13253 CTAACCCAGCATGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13254 CTAACCCAGTACCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13255 CTAACCCCACAACCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13256 CTAACCCCACGGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13257 CTAACCCGTTACGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13258 CTAACCCTCTTTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13259 CTAACTTAGCCTTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13260 CTAACTTAGGTAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13261 CTAACTTCAATCAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13262 CTAACTTGTACCGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13263 CTAACTTGTCACAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13264 CTAACTTGTCCCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13265 CTAACTTTCCACCCTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13266 CTAACTTTCCTCACGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13267 CTAAGTGAGGCAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13268 CTAAGTGCACCGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13269 CTAAGTGCAGTATTCG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13270 CTAAGTGGTTACTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13271 CTAAGTGTCAAGAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13272 CTAAGTGTCCCATACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13273 CTACAGAAGCCATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13274 CTACAGAAGCGGTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13275 CTACAGAAGTCGCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13276 CTACAGACAGGTTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13277 CTACAGACATCGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13278 CTACAGAGTATAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13279 CTACAGAGTGAATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13280 CTACAGAGTGTTGACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13281 CTACAGAGTTCTGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13282 CTACAGATCAATCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13283 CTACAGATCGGCATTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13284 CTACAGATCGTAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13285 CTACATTAGAAGCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13286 CTACATTAGGAGAGGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13287 CTACATTCAGATAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13288 CTACATTGTCACTCAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13289 CTACATTGTTGGACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13290 CTACATTTCCGCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13291 CTACCCAAGAGTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13292 CTACCCAAGATGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13293 CTACCCAAGCATGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13294 CTACCCAAGCTGACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13295 CTACCCACAAAGACGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13296 CTACCCACACTCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13297 CTACCTGAGAAATCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13298 CTACCTGCATGGCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13299 CTACCTGGTGTTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13300 CTACCTGTCACTGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13301 CTACCTGTCGATTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13302 CTACCTGTCTCTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13303 CTACGGGAGCCTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13304 CTACGGGAGCTAATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13305 CTACGGGAGGGTCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13306 CTACGGGCAGCCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13307 CTACGGGGTAGCGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13308 CTACGGGTCCCAGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13309 CTACGGGTCGCATGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13310 CTACTATAGCTAATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13311 CTACTATAGGGTCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13312 CTACTATCAAGATGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13313 CTACTATCACCAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13314 CTACTATCACCTTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13315 CTACTATCATAACGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13316 CTACTATGTCTTGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13317 CTACTATGTTACCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13318 CTACTATTCGCGTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13319 CTACTATTCGGATACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13320 CTAGACAAGAGATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13321 CTAGACAAGGACTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13322 CTAGACAAGGTGAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13323 CTAGACAAGGTTCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13324 CTAGACAAGTGAATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13325 CTAGACACATACATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13326 CTAGACAGTACGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13327 CTAGACAGTATCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13328 CTAGACAGTGGTTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13329 CTAGACATCGCACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13330 CTAGGTAAGCGCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13331 CTAGGTAAGGGAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13332 CTAGGTAAGGGATGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13333 CTAGGTAAGGGTTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13334 CTAGGTAAGTACTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13335 CTAGGTACACACACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13336 CTAGGTAGTCGAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13337 CTAGGTAGTTATCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13338 CTAGGTATCGTGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13339 CTAGGTATCTATCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13340 CTATAGGAGCGAACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13341 CTATAGGAGGAGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13342 CTATAGGAGGCTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13343 CTATAGGAGGGCTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13344 CTATAGGCAAGGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13345 CTATAGGCACAGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13346 CTATAGGTCAATCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13347 CTATAGGTCGGTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13348 CTATAGGTCGTTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13349 CTATAGGTCTGATGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13350 CTATAGGTCTTCGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13351 CTATCCGAGCATGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13352 CTATCCGAGGATACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13353 CTATCCGCAAATCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13354 CTATCCGCACCAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13355 CTATCCGCACGGGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13356 CTATCCGGTACAATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13357 CTATCCGGTCTGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13358 CTATCCGGTGATAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13359 CTATCCGGTGCCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13360 CTATCCGGTGTGATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13361 CTATCCGTCAACCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13362 CTATCCGTCCTAGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13363 CTATCCGTCCTTATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13364 CTATCCGTCTTGGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13365 CTATCTAAGATACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13366 CTATCTAAGCATCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13367 CTATCTAAGGTCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13368 CTATCTAAGTGCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13369 CTATCTAAGTTGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13370 CTATCTACAAGACGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13371 CTATCTACAATTGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13372 CTATCTACACGCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13373 CTATCTACACTTGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13374 CTATCTACAGCCTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13375 CTATCTACAGCTTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13376 CTATCTACATCCGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13377 CTATCTAGTAGCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13378 CTATCTAGTGCTGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13379 CTATCTAGTTGCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13380 CTATCTAGTTGGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13381 CTCAACCAGCGTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13382 CTCAACCAGCTGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13383 CTCAACCAGGGTCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13384 CTCAACCAGTGCTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13385 CTCAACCCAAACACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13386 CTCAACCCAAATGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13387 CTCAACCCAACGTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13388 CTCAACCCAATGGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13389 CTCAACCCACACGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13390 CTCAACCCACGGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13391 CTCAACCCAGCGGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13392 CTCAACCCAGCTAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13393 CTCAACCGTACTAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13394 CTCAACCGTATACCCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13395 CTCAACCGTCAACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13396 CTCAACCTCAGCTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13397 CTCAAGAAGCATTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13398 CTCAAGAAGGTTTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13399 CTCAAGACAGCTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13400 CTCAAGACATCATTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13401 CTCAAGAGTGGGTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13402 CTCAAGAGTTCGGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13403 CTCAAGATCTGAACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13404 CTCAAGATCTTAGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13405 CTCAATTAGCCGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13406 CTCAATTAGCTCTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13407 CTCAATTAGGTTCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13408 CTCAATTCAACGTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13409 CTCAATTCAACTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13410 CTCAATTCAGCATCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13411 CTCAATTCAGTTACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13412 CTCAATTGTACTAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13413 CTCAATTGTCACCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13414 CTCAATTGTTCTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13415 CTCAATTTCCATACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13416 CTCAATTTCTCTGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13417 CTCAATTTCTTAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13418 CTCACTGAGCAACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13419 CTCACTGAGCCGAACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13420 CTCACTGAGGATGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13421 CTCACTGAGGCGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13422 CTCACTGAGTAAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13423 CTCACTGAGTCACTGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13424 CTCACTGCACCCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13425 CTCACTGGTAGAGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13426 CTCACTGGTCACCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13427 CTCACTGGTGGACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13428 CTCACTGGTGGACCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13429 CTCACTGGTTGGACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13430 CTCACTGTCGACCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13431 CTCAGAACAGCACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13432 CTCAGAACATGCAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13433 CTCAGAAGTCATCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13434 CTCAGAATCACTGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13435 CTCAGAATCCAAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13436 CTCAGAATCTAAGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13437 CTCAGGGAGCGTGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13438 CTCAGGGAGTCCCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13439 CTCAGGGCAGCACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13440 CTCAGGGCATGACGGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13441 CTCAGGGGTCGAAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13442 CTCAGGGTCTAGACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13443 CTCAGTCAGACTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13444 CTCAGTCCAGTGGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13445 CTCAGTCCATGGAACG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13446 CTCAGTCGTCTTAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13447 CTCAGTCTCGGTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13448 CTCAGTCTCTTGTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13449 CTCATCGAGAGAACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13450 CTCATCGAGATCGACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13451 CTCATCGAGCGGTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13452 CTCATCGAGGCTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13453 CTCATCGAGGTAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13454 CTCATCGCAAGTGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13455 CTCATCGCAATTGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13456 CTCATCGCACCGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13457 CTCATCGCAGCATACT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13458 CTCATCGGTATACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13459 CTCATCGGTCCACACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13460 CTCATCGGTGCGTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13461 CTCATCGTCATCACAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13462 CTCATCGTCCAATCCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13463 CTCATCGTCCATAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13464 CTCATCGTCTGAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13465 CTCATGCAGAAACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13466 CTCATGCCACCGCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13467 CTCATGCGTACGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13468 CTCATGCGTGTAAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13469 CTCATGCTCACCATAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13470 CTCATGCTCACGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13471 CTCATGCTCTTGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13472 CTCATTAAGAGCCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13473 CTCATTAAGGCTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13474 CTCATTAAGTAGAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13475 CTCATTACAAACCGGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13476 CTCATTACACAATGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13477 CTCATTACACTATGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13478 CTCATTACAGAGCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13479 CTCATTACAGGTTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13480 CTCATTACATGACAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13481 CTCATTAGTCCACATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13482 CTCATTAGTCGTCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13483 CTCATTAGTCTAGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13484 CTCATTAGTGATTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13485 CTCATTATCCAGGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13486 CTCATTATCCTACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13487 CTCATTATCGCTGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13488 CTCATTATCGGATAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13489 CTCATTATCGTAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13490 CTCATTATCTAGAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13491 CTCCAACAGTTACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13492 CTCCAACCAAGCTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13493 CTCCAACCATGTGACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13494 CTCCAACGTAGCTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13495 CTCCAACGTTGTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13496 CTCCAACTCTCTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13497 CTCCACAAGCATATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13498 CTCCACAAGGACACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13499 CTCCACAAGTATGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13500 CTCCACACAATGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13501 CTCCACACAGCTCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13502 CTCCACACAGGGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13503 CTCCACAGTACCGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13504 CTCCACAGTAGGATAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13505 CTCCACAGTAGTTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13506 CTCCACAGTCAACACT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13507 CTCCACAGTCACTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13508 CTCCACAGTCGATTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13509 CTCCACAGTGATTGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13510 CTCCACAGTTATGTCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13511 CTCCACATCATGCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13512 CTCCACATCCACAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13513 CTCCACATCCTGGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13514 CTCCACATCGGTCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13515 CTCCACATCTGCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13516 CTCCATGAGCATGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13517 CTCCATGAGTTGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13518 CTCCATGCAAAGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13519 CTCCATGCAAATGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13520 CTCCATGCAAGTACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13521 CTCCATGCACCACATA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13522 CTCCATGCATGCGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13523 CTCCATGCATTCAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13524 CTCCATGGTCAAGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13525 CTCCATGGTTGAGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13526 CTCCATGGTTGTTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13527 CTCCATGTCACTGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13528 CTCCATGTCATGGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13529 CTCCATGTCCTTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13530 CTCCATGTCTACTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13531 CTCCCAAAGAATCGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13532 CTCCCAAAGATCACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13533 CTCCCAAAGGCTTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13534 CTCCCAACAATGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13535 CTCCCAACACAAGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13536 CTCCCAACACTACCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13537 CTCCCAACAGATCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13538 CTCCCAACATAGGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13539 CTCCCAAGTAACAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13540 CTCCCAAGTAGGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13541 CTCCCAATCAACTACG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13542 CTCCCAATCTATTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13543 CTCCCAATCTTAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13544 CTCCCTCAGCTGTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13545 CTCCCTCAGGTACAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13546 CTCCCTCAGTATCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13547 CTCCCTCCAACAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13548 CTCCCTCCAAGTTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13549 CTCCCTCCAATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13550 CTCCCTCGTCGCTTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13551 CTCCCTCGTGTCATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13552 CTCCGATCAAATGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13553 CTCCGATCACGTACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13554 CTCCGATCAGTTCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13555 CTCCGATGTCATCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13556 CTCCGATGTGACTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13557 CTCCGATTCCCTAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13558 CTCCGATTCCGTCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13559 CTCCTCCAGAAACCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13560 CTCCTCCGTACGATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13561 CTCCTCCGTCCTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13562 CTCCTCCGTGGTTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13563 CTCCTCCTCACTGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13564 CTCCTCCTCCGCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13565 CTCCTCCTCGGTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13566 CTCCTCCTCGTAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13567 CTCCTCCTCGTCAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13568 CTCCTCCTCTATGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13569 CTCCTTTAGACGGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13570 CTCCTTTAGATGTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13571 CTCCTTTAGGAACTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13572 CTCCTTTAGTAGCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13573 CTCCTTTAGTCATGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13574 CTCCTTTCAAATGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13575 CTCCTTTCAAGAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13576 CTCCTTTCAGGTACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13577 CTCCTTTCATAATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13578 CTCCTTTCATGGCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13579 CTCCTTTGTCACGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13580 CTCCTTTGTCTACTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13581 CTCCTTTGTTCGGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13582 CTCCTTTTCCGATCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13583 CTCGAGGAGGGAGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13584 CTCGAGGAGTAAACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13585 CTCGAGGCACCAATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13586 CTCGAGGCAGGTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13587 CTCGAGGCAGGTGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13588 CTCGAGGGTAATCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13589 CTCGAGGGTATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13590 CTCGAGGGTGCGTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13591 CTCGAGGGTTCCCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13592 CTCGAGGTCACTTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13593 CTCGAGGTCAGAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13594 CTCGAGGTCCTTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13595 CTCTCAGAGTCGGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13596 CTCTCAGCAACTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13597 CTCTCAGCAAGGTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13598 CTCTCAGCATGACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13599 CTCTCAGGTGATCATC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13600 CTCTCAGGTTACGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13601 CTCTCAGGTTCCAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13602 CTCTCAGGTTTAAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13603 CTCTCAGTCGCCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13604 CTCTCGAAGACATGCG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13605 CTCTCGAAGCAGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13606 CTCTCGAAGCCTAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13607 CTCTCGACAAAGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13608 CTCTCGACAACTCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13609 CTCTCGACACTGCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13610 CTCTCGAGTAATGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13611 CTCTCGAGTCGCAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13612 CTCTCGAGTTTACGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13613 CTCTCGAGTTTAGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13614 CTCTCGATCATCCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13615 CTCTCGATCATGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13616 CTCTCGATCTAGTTCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13617 CTCTCGATCTGGGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13618 CTCTGGTAGTCCCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13619 CTCTGGTCAAGTTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13620 CTCTGGTCAGTCGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13621 CTCTGGTCATACCACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13622 CTCTGGTTCAGTGATC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13623 CTCTGGTTCGCAAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13624 CTGAATGAGGGCGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13625 CTGAATGAGGTAGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13626 CTGAATGAGTTGAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13627 CTGAATGCAGCATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13628 CTGAATGCAGGTAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13629 CTGAATGCATCCTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13630 CTGAATGCATCGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13631 CTGAATGGTATCGATC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13632 CTGAATGGTCACTACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13633 CTGAATGGTGTTCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13634 CTGAATGTCCTAGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13635 CTGAATGTCGTACCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13636 CTGAATGTCTGCGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13637 CTGAGCGAGAGCACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13638 CTGAGCGAGAGCGACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13639 CTGAGCGAGCTCGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13640 CTGAGCGAGTAGTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13641 CTGAGCGCAAGAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13642 CTGAGCGCAATCAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13643 CTGAGCGGTACGACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13644 CTGAGCGGTGGCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13645 CTGAGCGGTGGTAATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13646 CTGAGCGGTGTTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13647 CTGAGCGGTTCTAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13648 CTGAGCGGTTTCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13649 CTGAGCGTCAAATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13650 CTGAGCGTCATTGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13651 CTGAGCGTCTACTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13652 CTGAGGCAGATCACTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13653 CTGAGGCCAAAGAACT SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13654 CTGAGGCGTCCTGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13655 CTGAGGCTCAGCTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13656 CTGATCCAGAATGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13657 CTGATCCAGACATGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13658 CTGATCCAGGGCCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13659 CTGATCCCAAGTGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13660 CTGATCCCAATTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13661 CTGATCCCAATTGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13662 CTGATCCCACCAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13663 CTGATCCCATAGGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13664 CTGATCCCATTGTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13665 CTGATCCGTCACTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13666 CTGATCCGTCGCTTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13667 CTGATCCGTCGGTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13668 CTGATCCTCTTTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13669 CTGCAGGAGACTCGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13670 CTGCAGGAGACTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13671 CTGCAGGAGCATACTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13672 CTGCAGGAGCTAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13673 CTGCAGGCAGGTATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13674 CTGCAGGGTAATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13675 CTGCAGGGTGTCCACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13676 CTGCAGGGTTCTAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13677 CTGCAGGTCGTGCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13678 CTGCAGGTCTGTAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13679 CTGCATCAGACTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13680 CTGCATCAGCACCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13681 CTGCATCAGTTAACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13682 CTGCATCCACAACATC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13683 CTGCATCCAGGAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13684 CTGCATCCATCATGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13685 CTGCATCGTGCTGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13686 CTGCATCTCATCCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13687 CTGCCATAGAGGGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13688 CTGCCATAGCATGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13689 CTGCCATAGGATACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13690 CTGCCATAGGCGAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13691 CTGCCATAGGGACAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13692 CTGCCATAGTAACCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13693 CTGCCATCACGACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13694 CTGCCATCATGTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13695 CTGCCATGTTTGGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13696 CTGCCATTCCGCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13697 CTGCCATTCTGCGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13698 CTGCCTAAGAGCAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13699 CTGCCTAAGAGCATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13700 CTGCCTAAGCCGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13701 CTGCCTAAGGTTGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13702 CTGCCTAAGTTGCCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13703 CTGCCTAAGTTGCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13704 CTGCCTAAGTTTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13705 CTGCCTACAGTAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13706 CTGCCTAGTAAGCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13707 CTGCCTAGTGTTGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13708 CTGCCTAGTTGCATTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13709 CTGCCTATCGACGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13710 CTGCGAGAGCACACCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13711 CTGCGAGAGGAACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13712 CTGCGAGAGGTGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13713 CTGCGAGCAGGACTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13714 CTGCGAGCAGTGGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13715 CTGCGAGCATGAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13716 CTGCGAGCATTCTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13717 CTGCGAGGTACGATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13718 CTGCGAGGTCACCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13719 CTGCGAGGTCATATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13720 CTGCGAGGTCCACTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13721 CTGCGAGGTGGTGATG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13722 CTGCGAGTCAGCTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13723 CTGCGAGTCCAAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13724 CTGCTCAAGAAGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13725 CTGCTCAAGTGGCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13726 CTGCTCACACAGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13727 CTGCTCACATAGATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13728 CTGCTCAGTGACCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13729 CTGCTCAGTGAGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13730 CTGCTCATCCCTCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13731 CTGGACGAGATGAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13732 CTGGACGAGGGACAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13733 CTGGACGCAAATTGCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13734 CTGGACGCAGGATTCT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13735 CTGGACGCAGTCGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13736 CTGGACGTCAAACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13737 CTGGACGTCAGGAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13738 CTGGACGTCGGTAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13739 CTGGACGTCGGTATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13740 CTGGACGTCTAGCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13741 CTGGCAGAGGTAAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13742 CTGGCAGCAAATGAAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13743 CTGGCAGCAGGCAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13744 CTGGCAGCATGCAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13745 CTGGCAGCATGTTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13746 CTGGCAGCATTCTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13747 CTGGCAGGTACGTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13748 CTGGCAGGTATCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13749 CTGGCAGGTCAACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13750 CTGGCAGGTGCATCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13751 CTGGCAGGTTACACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13752 CTGGCAGGTTGCGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13753 CTGGCAGTCAGTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13754 CTGGCAGTCCGCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13755 CTGGTCTAGCCGGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13756 CTGGTCTAGCGCTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13757 CTGGTCTAGGCCACTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13758 CTGGTCTAGGCTAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13759 CTGGTCTAGTAGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13760 CTGGTCTCAGGTTACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13761 CTGGTCTCATCCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13762 CTGGTCTCATCGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13763 CTGGTCTGTTTGTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13764 CTGGTCTTCTGCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13765 CTGTACCAGCACTGGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13766 CTGTACCAGCTGCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13767 CTGTACCCAAATTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13768 CTGTACCCACAGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13769 CTGTACCGTATGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13770 CTGTACCGTCGATTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13771 CTGTACCGTGGATTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13772 CTGTACCGTTACCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13773 CTGTACCTCTCGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13774 CTGTAGAAGATGCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13775 CTGTAGAAGGCATCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13776 CTGTAGAAGTCTGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13777 CTGTAGACAAGGCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13778 CTGTAGACAATACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13779 CTGTAGACAGAGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13780 CTGTAGACAGCGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13781 CTGTAGACATAATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13782 CTGTAGACATCTGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13783 CTGTAGAGTACATTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13784 CTGTAGAGTCTCAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13785 CTGTAGAGTGTTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13786 CTGTAGAGTTCTAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13787 CTGTAGATCAAATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13788 CTGTATTCAAGCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13789 CTGTATTCAGACCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13790 CTGTATTCAGAGGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13791 CTGTATTCAGTGGTGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13792 CTGTATTGTGAACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13793 CTGTATTTCCGAGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13794 CTGTCGTAGTCGAATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13795 CTGTCGTAGTGGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13796 CTGTCGTCAGATCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13797 CTGTCGTCAGTCGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13798 CTGTCGTCATCATTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13799 CTGTCGTGTCCTGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13800 CTGTCGTGTTAAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13801 CTGTCGTGTTCTTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13802 CTGTCGTTCATGGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13803 CTGTGAACAAGGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13804 CTGTGAACAGCTTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13805 CTGTGAACATAGTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13806 CTGTGAAGTATGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13807 CTGTGAAGTCGAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13808 CTGTGAATCGTACCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13809 CTGTGGGAGCACTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13810 CTGTGGGAGTGTTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13811 CTGTGGGCAGAACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13812 CTGTGGGCAGCGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13813 CTGTGGGGTCGAAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13814 CTGTGGGGTTCCATTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13815 CTTACCGAGACTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13816 CTTACCGAGAGTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13817 CTTACCGAGATGGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13818 CTTACCGAGCATTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13819 CTTACCGAGCCTGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13820 CTTACCGAGTAGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13821 CTTACCGAGTTCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13822 CTTACCGAGTTTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13823 CTTACCGCAATCGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13824 CTTACCGCAGAGGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13825 CTTACCGCAGCCGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13826 CTTACCGGTCGAGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13827 CTTACCGGTCTTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13828 CTTACCGGTGACAACG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13829 CTTACCGTCACATCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13830 CTTACCGTCGAACCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13831 CTTACCGTCGGCTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13832 CTTACCGTCGTCCATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13833 CTTAGGAAGAGGCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13834 CTTAGGAAGGGTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13835 CTTAGGAAGTAAGACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13836 CTTAGGACACTTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13837 CTTAGGACAGTCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13838 CTTAGGACATTCAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13839 CTTCAATAGAAGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13840 CTTCAATAGCAATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13841 CTTCAATAGGTATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13842 CTTCAATCAACAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13843 CTTCAATCAGAGCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13844 CTTCAATGTACAAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13845 CTTCAATGTGAAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13846 CTTCCGAAGATACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13847 CTTCCGAAGCAAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13848 CTTCCGAAGCGTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13849 CTTCCGAAGTGCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13850 CTTCCGAAGTTGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13851 CTTCCGACAAGAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13852 CTTCCGACAGGGCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13853 CTTCCGAGTGAATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13854 CTTCCGAGTTAACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13855 CTTCCGAGTTCCATTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13856 CTTCCGATCAAGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13857 CTTCCGATCGCGTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13858 CTTCCTTAGTAAACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13859 CTTCCTTAGTGTTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13860 CTTCCTTCAAATGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13861 CTTCCTTCAATGGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13862 CTTCCTTCACTACTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13863 CTTCCTTCATCAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13864 CTTCCTTCATTGCTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13865 CTTCCTTGTACTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13866 CTTCCTTGTAGTCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13867 CTTCCTTGTCTCAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13868 CTTCCTTTCCCAATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13869 CTTCGGTAGCAAGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13870 CTTCGGTAGCCGCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13871 CTTCGGTAGGACGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13872 CTTCGGTCACATGACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13873 CTTCGGTCATTAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13874 CTTCGGTCATTGACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13875 CTTCGGTGTCCACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13876 CTTCGGTGTGACACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13877 CTTCGGTTCAGGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13878 CTTCGGTTCCGATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13879 CTTCGGTTCTAGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13880 CTTCTAAAGGCGCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13881 CTTCTAAAGGGAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13882 CTTCTAAAGTCAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13883 CTTCTAAAGTTGCGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13884 CTTCTAACACCTTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13885 CTTCTAACACTTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13886 CTTCTAAGTGACCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13887 CTTCTAAGTGAGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13888 CTTCTAATCATCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13889 CTTCTAATCCACGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13890 CTTCTCTAGCCATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13891 CTTCTCTAGTGCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13892 CTTCTCTAGTGGACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13893 CTTCTCTCAAGGCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13894 CTTCTCTCACGGTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13895 CTTCTCTCATCTATCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13896 CTTCTCTGTGCACATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13897 CTTCTCTTCGGTTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13898 CTTCTCTTCTCGGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13899 CTTGAGAAGCATCGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13900 CTTGAGAAGGCACTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13901 CTTGAGAAGGCCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13902 CTTGAGAAGGCTCACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13903 CTTGAGACAAAGAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13904 CTTGAGACAACTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13905 CTTGAGAGTTCTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13906 CTTGAGATCATACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13907 CTTGAGATCCGTAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13908 CTTGAGATCTAACGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13909 CTTGATTAGGTTAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13910 CTTGATTCAAATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13911 CTTGATTCACCTAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13912 CTTGATTCACGAAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13913 CTTGATTCAGAACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13914 CTTGATTCAGCTGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13915 CTTGATTCAGGCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13916 CTTGATTCAGTTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13917 CTTGATTCATGAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13918 CTTGATTGTGATGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13919 CTTGATTGTTACAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13920 CTTGATTTCAGTCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13921 CTTGATTTCGATTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13922 CTTGATTTCTGAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13923 CTTGATTTCTGGAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13924 CTTTCAAAGCCACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13925 CTTTCAAAGGGACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13926 CTTTCAACAATACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13927 CTTTCAACAGTTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13928 CTTTCAAGTACTTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13929 CTTTCAAGTAGCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13930 CTTTCAAGTATGGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13931 CTTTCAAGTGCCTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13932 CTTTCAAGTTCCACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13933 CTTTCAATCAAGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13934 CTTTCAATCCCATGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13935 CTTTCAATCGAGCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13936 CTTTCGGAGCGGTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13937 CTTTCGGGTCACTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13938 CTTTCGGGTCAGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13939 CTTTCGGGTCCAACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13940 CTTTCGGGTGGGCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13941 CTTTCGGGTGTCCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13942 CTTTCGGTCACTGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13943 CTTTCGGTCCAGCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13944 CTTTCGGTCGCCAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13945 CTTTCGGTCGTCAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13946 CTTTCGGTCTAGAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13947 GAAACCTCAACTGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13948 GAAACCTCAAGAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13949 GAAACCTCAAGATGGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13950 GAAACCTGTATGTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13951 GAAACCTTCAAGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13952 GAAACCTTCGAGAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13953 GAAACCTTCGCTCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13954 GAAACCTTCTCATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13955 GAAATGAAGACCTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13956 GAAATGAAGACTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13957 GAAATGAAGCTGACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13958 GAAATGAAGCTGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13959 GAAATGAAGGCCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13960 GAAATGACAAGGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13961 GAAATGACAATCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13962 GAAATGACATATACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13963 GAAATGACATGTGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13964 GAAATGAGTCCATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13965 GAAATGAGTCGGCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13966 GAAATGAGTGGGCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13967 GAACACTAGACCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13968 GAACACTAGGAAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13969 GAACACTAGGCTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13970 GAACACTGTATGCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13971 GAACACTTCTCGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13972 GAACGTTAGGATGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13973 GAACGTTAGGCCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13974 GAACGTTAGGTTTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13975 GAACGTTAGTGGTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13976 GAACGTTCAAGCAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13977 GAACGTTCAATCGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13978 GAACGTTCACCTGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13979 GAACGTTCACGACTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13980 GAACGTTCAGCAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13981 GAACGTTCAGGACTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13982 GAACGTTCAGTCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13983 GAACGTTGTAACAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13984 GAACGTTGTATGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13985 GAACGTTGTCGAGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13986 GAACGTTGTTGTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13987 GAACGTTTCAGCAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13988 GAACGTTTCTTACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13989 GAACGTTTCTTGCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13990 GAACTGTAGCAATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13991 GAACTGTAGGTTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13992 GAACTGTCAGGTGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13993 GAACTGTCATTCTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13994 GAACTGTGTACGATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13995 GAACTGTGTTGCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13996 GAACTGTTCGGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13997 GAACTGTTCGGTTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13998 GAACTGTTCTAGCATG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
13999 GAAGAATAGACGCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14000 GAAGAATAGCAGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14001 GAAGAATCACCCTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14002 GAAGAATCACTGCGTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14003 GAAGAATCAGACCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14004 GAAGAATCATTAAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14005 GAAGAATGTGATGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14006 GAAGAATTCATTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14007 GAAGAATTCGACATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14008 GAAGAATTCGCCGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14009 GAAGCCCAGACTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14010 GAAGCCCAGAGCTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14011 GAAGCCCAGCTAAACA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14012 GAAGCCCAGTCTGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14013 GAAGCCCCACAAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14014 GAAGCCCCAGACTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14015 GAAGCCCCAGGCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14016 GAAGCCCGTTCCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14017 GAAGCCCTCATTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14018 GAAGCCCTCCATGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14019 GAAGCCCTCGGACCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14020 GAAGCCCTCTACCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14021 GAAGCCCTCTCGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14022 GAAGCGAAGCACTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14023 GAAGCGAAGGCCTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14024 GAAGCGAAGTATAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14025 GAAGCGACAGAAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14026 GAAGCGACAGCTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14027 GAAGCGAGTACATACC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14028 GAAGCGAGTTAGCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14029 GAAGCGATCTCAGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14030 GAAGGACAGCACTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14031 GAAGGACAGCGTTGTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14032 GAAGGACAGGAGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14033 GAAGGACAGTTCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14034 GAAGGACCAAATTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14035 GAAGGACCACGCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14036 GAAGGACGTTCCGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14037 GAAGGACGTTGCAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14038 GAAGGACTCATTTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14039 GAAGGGTAGGCTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14040 GAAGGGTAGGGTTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14041 GAAGGGTCACCCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14042 GAAGGGTCATACGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14043 GAAGGGTGTCACAATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14044 GAAGGGTGTCTTACAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14045 GAAGGGTGTTGGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14046 GAAGGGTTCACCTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14047 GAAGGGTTCATTGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14048 GAAGGGTTCGGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14049 GAAGGGTTCTCGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14050 GAAGGGTTCTTTGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14051 GAAGTAAAGATCGCCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14052 GAAGTAAAGCGCCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14053 GAAGTAAAGTCGCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14054 GAAGTAAAGTGCAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14055 GAAGTAAGTAGTCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14056 GAAGTAAGTATACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14057 GAAGTAAGTTAAGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14058 GAAGTAAGTTACCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14059 GAAGTAAGTTAGAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14060 GAAGTAAGTTCAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14061 GAAGTAAGTTTACGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14062 GAAGTAATCACCACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14063 GAAGTAATCAGCCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14064 GAAGTAATCCAAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14065 GAAGTAATCCTTATCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14066 GAAGTAATCGGCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14067 GAAGTAATCTTTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14068 GAATAGAAGAATTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14069 GAATAGAAGCATCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14070 GAATAGAAGCCACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14071 GAATAGAAGGGCTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14072 GAATAGAAGGGTTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14073 GAATAGAAGGTGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14074 GAATAGACACGACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14075 GAATAGACAGTATACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14076 GAATAGAGTCATACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14077 GAATAGAGTGCCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14078 GAATAGAGTGGTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14079 GAATAGATCACTTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14080 GAATAGATCATGGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14081 GAATAGATCGCAGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14082 GAATAGATCTGGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14083 GAATCACAGGGCAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14084 GAATCACCAACCTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14085 GAATCACCAATAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14086 GAATCACCAATTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14087 GAATCACCATAGATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14088 GAATCACGTATGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14089 GAATCACGTCGTTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14090 GAATCACTCTGTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14091 GAATCGTAGACCAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14092 GAATCGTAGAGCCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14093 GAATCGTCACGCTATA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14094 GAATCGTCATTAAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14095 GAATCGTGTTACCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14096 GAATCGTTCACCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14097 GAATCGTTCTACCACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14098 GACACGCAGAATACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14099 GACACGCAGCGAGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14100 GACACGCAGCGGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14101 GACACGCAGCGGTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14102 GACACGCAGGGCGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14103 GACACGCCAAACACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14104 GACACGCCACTCAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14105 GACACGCCAGAAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14106 GACACGCGTATTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14107 GACACGCGTCACGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14108 GACACGCGTCGACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14109 GACACGCGTTCGAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14110 GACACGCTCGAAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14111 GACAGCCAGAGCAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14112 GACAGCCCAATTGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14113 GACAGCCCATAATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14114 GACAGCCGTATGAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14115 GACAGCCGTTGCCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14116 GACAGCCTCAATCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14117 GACATCAAGACAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14118 GACATCAAGCTCGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14119 GACATCACACGACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14120 GACATCACAGCGTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14121 GACATCAGTAATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14122 GACATCAGTCCTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14123 GACATCAGTCGCAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14124 GACATCAGTTGTAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14125 GACATCATCAGTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14126 GACATCATCTAGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14127 GACCAATCAAGTGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14128 GACCAATCAGGTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14129 GACCAATCATAGATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14130 GACCAATGTACGAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14131 GACCAATGTTGCTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14132 GACCAATTCATGGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14133 GACCAATTCGTGCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14134 GACCAATTCTTCACGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14135 GACCCAGAGCGATTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14136 GACCCAGAGTCCCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14137 GACCCAGCATTCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14138 GACCCAGGTAGTGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14139 GACCCAGGTCCCTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14140 GACCCAGGTTGCATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14141 GACCCAGTCAAGTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14142 GACCCTTAGACATGCG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14143 GACCCTTAGAGAATCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14144 GACCCTTAGAGTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14145 GACCCTTAGCATCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14146 GACCCTTAGCCTTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14147 GACCCTTAGGCAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14148 GACCCTTCACCTCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14149 GACCCTTCAGACCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14150 GACCCTTCAGCCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14151 GACCCTTGTAGATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14152 GACCCTTGTCCATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14153 GACCCTTGTCCTACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14154 GACCCTTGTGCGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14155 GACCCTTGTGGTTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14156 GACCCTTGTTCAACGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14157 GACCCTTTCATGAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14158 GACCCTTTCTCCTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14159 GACCGTGAGCACGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14160 GACCGTGCAGCGATTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14161 GACCGTGCAGCTGGTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14162 GACCGTGGTATACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14163 GACCGTGGTCGTATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14164 GACCTTCAGAAACCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14165 GACCTTCAGATCCGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14166 GACCTTCAGGGTTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14167 GACCTTCAGGTAACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14168 GACCTTCCAGTAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14169 GACCTTCGTACTCGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14170 GACCTTCGTCGTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14171 GACCTTCTCACCTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14172 GACCTTCTCCGATTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14173 GACCTTCTCTGATGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14174 GACGCTGAGACGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14175 GACGCTGCAATCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14176 GACGCTGCACTTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14177 GACGCTGCATGTGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14178 GACGCTGCATTAGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14179 GACGCTGGTACGATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14180 GACGCTGGTGCATCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14181 GACGCTGGTTCGTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14182 GACGCTGTCCGACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14183 GACGTTAAGAGCCTGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14184 GACGTTAAGCCATATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14185 GACGTTAAGTTGAATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14186 GACGTTACAACCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14187 GACGTTACACAAATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14188 GACGTTACATCGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14189 GACGTTACATTCCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14190 GACGTTATCATGGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14191 GACGTTATCCCATTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14192 GACGTTATCGGTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14193 GACTATGAGGATGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14194 GACTATGAGGTCTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14195 GACTATGAGGTGAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14196 GACTATGAGTACTGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14197 GACTATGCAACCCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14198 GACTATGCATAATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14199 GACTATGTCAAACTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14200 GACTATGTCAGCTCTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14201 GACTATGTCGACGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14202 GACTCAAAGAACTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14203 GACTCAAAGTGAGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14204 GACTCAACAAGACTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14205 GACTCAACAAGTGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14206 GACTCAACACTACCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14207 GACTCAAGTCTCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14208 GACTCAATCGGTAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14209 GACTCTCAGGAGCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14210 GACTCTCCAACCTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14211 GACTCTCCACGCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14212 GACTCTCCAGAGTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14213 GACTCTCCATTCGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14214 GACTCTCGTAGGACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14215 GACTCTCGTTGGACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14216 GACTCTCTCTAGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14217 GACTGATAGACTCCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14218 GACTGATAGGCTCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14219 GACTGATAGTAGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14220 GACTGATCAACTAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14221 GACTGATCACCTGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14222 GACTGATCACCTGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14223 GACTGATGTATCAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14224 GACTGATGTCACTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14225 GACTGATGTGCACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14226 GACTGATGTGGACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14227 GACTGATTCAATCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14228 GACTGATTCACCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14229 GACTGATTCTCTGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14230 GACTGATTCTGTCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14231 GACTTCCAGTCGCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14232 GACTTCCGTAAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14233 GACTTCCGTAGTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14234 GACTTCCGTCACCACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14235 GACTTCCGTCGCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14236 GACTTCCGTGGCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14237 GACTTCCGTTCCATTT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14238 GAGAAATAGGTTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14239 GAGAAATCAAGGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14240 GAGAAATCAGATTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14241 GAGAAATCAGTTAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14242 GAGAAATGTAAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14243 GAGAAATGTGAGTAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14244 GAGAAATGTGGGATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14245 GAGAAATTCCCAAGCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14246 GAGAAATTCGGAATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14247 GAGACCCAGAGGTTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14248 GAGACCCAGATCCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14249 GAGACCCCAAATCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14250 GAGACCCCACATATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14251 GAGACCCCATAGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14252 GAGACCCGTAGGTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14253 GAGACCCTCACCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14254 GAGACCCTCAGAGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14255 GAGACCCTCTGAGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14256 GAGACTTAGGAATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14257 GAGACTTAGTATGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14258 GAGACTTGTTAGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14259 GAGACTTTCGATTCCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14260 GAGACTTTCGCGATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14261 GAGACTTTCTTCCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14262 GAGAGGTAGTAATTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14263 GAGAGGTAGTACTGTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14264 GAGAGGTCACTTGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14265 GAGAGGTGTAACTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14266 GAGAGGTGTGAAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14267 GAGAGGTTCCATTTGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14268 GAGAGGTTCTCATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14269 GAGATGGAGACTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14270 GAGATGGCAAAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14271 GAGATGGCATGATCTG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14272 GAGATGGGTAACATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14273 GAGATGGGTCTCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14274 GAGATGGGTCTGTGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14275 GAGATGGGTGAGAACC SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14276 GAGATGGGTGAGCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14277 GAGATGGTCACGGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14278 GAGATGGTCAGCATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14279 GAGATGGTCCGAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14280 GAGCCTGAGAAACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14281 GAGCCTGAGCTCGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14282 GAGCCTGCAACGCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14283 GAGCCTGCAATTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14284 GAGCCTGCACTCACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14285 GAGCCTGCAGTGTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14286 GAGCCTGCATAACCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14287 GAGCCTGGTCACATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14288 GAGCCTGTCGATTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14289 GAGCTGCAGCCAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14290 GAGCTGCCAAGCAATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14291 GAGCTGCCACGGATCC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14292 GAGCTGCCAGCGGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14293 GAGCTGCCATACTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14294 GAGCTGCCATGGTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14295 GAGCTGCGTCCATCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14296 GAGCTGCGTCCTACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14297 GAGCTGCGTCCTTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14298 GAGCTGCGTGTCATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14299 GAGCTGCGTTGACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14300 GAGCTGCGTTGCAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14301 GAGCTGCTCATCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14302 GAGCTGCTCCCTCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14303 GAGCTGCTCGAAGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14304 GAGCTGCTCGCACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14305 GAGCTGCTCTCAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14306 GAGGCAAAGATACAGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14307 GAGGCAAAGATACATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14308 GAGGCAAAGCAAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14309 GAGGCAAAGTACAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14310 GAGGCAACACATCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14311 GAGGCAACACCTGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14312 GAGGCAACATGACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14313 GAGGCAATCCCGGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14314 GAGGCAATCGAGAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14315 GAGGCCTAGGATGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14316 GAGGCCTAGGCAGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14317 GAGGCCTAGTAGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14318 GAGGCCTCAAACTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14319 GAGGCCTCAACTAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14320 GAGGCCTCACTTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14321 GAGGCCTCATGTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14322 GAGGCCTGTGTGAATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14323 GAGGCCTTCCCTAGGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14324 GAGGCCTTCGAAACAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14325 GAGGCCTTCTATTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14326 GAGGGATCACCGTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14327 GAGGGATCAGAAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14328 GAGGGATCATTGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14329 GAGGGATGTAGTTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14330 GAGGGATGTTCAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14331 GAGGGATTCATGGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14332 GAGGGATTCCAACCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14333 GAGGGATTCCTCATAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14334 GAGGGATTCTCGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14335 GAGGGTAAGAGGTTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14336 GAGGGTAAGGCGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14337 GAGGGTACAAGACCGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14338 GAGGGTACAATGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14339 GAGGGTAGTAAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14340 GAGGGTAGTCGCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14341 GAGGGTATCAGCAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14342 GAGGGTATCATGTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14343 GAGGGTATCTCGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14344 GAGTCATAGACTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14345 GAGTCATAGCATTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14346 GAGTCATAGGTCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14347 GAGTCATAGGTCTACT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14348 GAGTCATAGTCACACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14349 GAGTCATAGTGCCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14350 GAGTCATCACCCTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14351 GAGTCATCAGAACTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14352 GAGTCATCAGTCCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14353 GAGTCATCATCTTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14354 GAGTCATTCAAAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14355 GAGTCATTCCACACAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14356 GAGTCATTCGAACACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14357 GAGTCATTCTTTGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14358 GAGTCTAAGAGCAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14359 GAGTCTAAGCTGACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14360 GAGTCTAAGGTAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14361 GAGTCTACAAGGTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14362 GAGTCTACAGTAACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14363 GAGTCTAGTATGACAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14364 GAGTCTATCCATCACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14365 GAGTCTATCCTGCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14366 GAGTCTATCGAGAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14367 GAGTGAGAGACAAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14368 GAGTGAGAGCTCGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14369 GAGTGAGAGTTGAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14370 GAGTGAGCAACTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14371 GAGTGAGCACAGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14372 GAGTGAGCACCCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14373 GAGTGAGCATAGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14374 GAGTGAGGTCGGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14375 GAGTGAGGTTACCTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14376 GAGTGAGTCACAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14377 GAGTGAGTCCATTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14378 GAGTGAGTCCGAAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14379 GAGTGAGTCCGTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14380 GAGTGAGTCTCATGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14381 GAGTGAGTCTTCCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14382 GAGTGTTCAGATAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14383 GAGTGTTCAGCAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14384 GAGTGTTCATGCTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14385 GAGTGTTGTCGGCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14386 GAGTGTTTCAAGCCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14387 GAGTGTTTCAAGCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14388 GAGTGTTTCACTTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14389 GAGTGTTTCCTGTTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14390 GAGTTACCAAAGGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14391 GAGTTACCATAGGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14392 GAGTTACGTACGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14393 GAGTTACGTAGACAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14394 GAGTTACGTAGTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14395 GAGTTACGTCGATTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14396 GAGTTACTCTGGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14397 GAGTTGTAGCAATTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14398 GAGTTGTCATCAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14399 GAGTTGTGTCGACTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14400 GAGTTGTGTCTCAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14401 GAGTTGTGTGTCTTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14402 GAGTTGTGTTCGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14403 GAGTTGTTCCCTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14404 GAGTTTGAGCATGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14405 GAGTTTGAGGGTCTTT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14406 GAGTTTGAGTAACCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14407 GAGTTTGAGTCACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14408 GAGTTTGGTACCGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14409 GAGTTTGGTCAACACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14410 GAGTTTGGTGTGGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14411 GAGTTTGGTGTTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14412 GAGTTTGGTTCTAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14413 GAGTTTGTCGAACTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14414 GAGTTTGTCTAAACGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14415 GATAGAAAGGATCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14416 GATAGAACACCTATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14417 GATAGAACAGAAATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14418 GATAGAACATCGTGGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14419 GATAGAAGTCCGGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14420 GATAGAAGTCCTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14421 GATAGAAGTCGGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14422 GATAGAAGTGGGATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14423 GATAGAAGTGTCCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14424 GATAGAATCCCTTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14425 GATAGAATCCTTATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14426 GATAGAATCGGTAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14427 GATAGCTAGATACATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14428 GATAGCTAGATGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14429 GATAGCTAGTTCCGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14430 GATAGCTCAACATCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14431 GATAGCTCAAGTGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14432 GATAGCTCACCAATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14433 GATAGCTCAGATCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14434 GATAGCTGTCATAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14435 GATAGCTTCGGCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14436 GATCACAAGAACAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14437 GATCACAAGCCATTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14438 GATCACAAGTGCCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14439 GATCACAAGTTGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14440 GATCACACAGACCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14441 GATCACAGTAAGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14442 GATCACAGTATGCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14443 GATCACAGTATGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14444 GATCACAGTATTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14445 GATCACAGTCACCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14446 GATCACAGTGGAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14447 GATCACAGTTAAGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14448 GATCACATCGTAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14449 GATCAGTAGACGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14450 GATCAGTAGATTGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14451 GATCAGTAGCGTTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14452 GATCAGTAGCTACAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14453 GATCAGTCAACCCGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14454 GATCAGTCAGCTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14455 GATCAGTCAGTCTCTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14456 GATCAGTCAGTTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14457 GATCAGTGTAGACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14458 GATCAGTGTATTCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14459 GATCAGTTCAGAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14460 GATCAGTTCCAAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14461 GATCATGAGAGAGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14462 GATCATGAGATAGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14463 GATCATGAGCATGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14464 GATCATGCAAGTGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14465 GATCATGCAGAGCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14466 GATCATGCAGGCATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14467 GATCATGCATCCAATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14468 GATCATGGTACTAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14469 GATCATGGTGTTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14470 GATCATGTCATTACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14471 GATCATGTCGTTCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14472 GATCCCTAGAACAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14473 GATCCCTAGATGAACT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14474 GATCCCTAGGCAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14475 GATCCCTAGGTACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14476 GATCCCTCAAAGGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14477 GATCCCTCACCATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14478 GATCCCTCACGTAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14479 GATCCCTCATGACGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14480 GATCCCTGTACGTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14481 GATCCCTGTATTGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14482 GATCCCTGTCGATTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14483 GATCCCTGTCTCAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14484 GATCCCTGTGACTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14485 GATCCCTTCAAGGACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14486 GATCCCTTCACTGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14487 GATCGTAAGACCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14488 GATCGTAAGACGATAT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14489 GATCGTAAGGCCCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14490 GATCGTAAGTCTCTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14491 GATCGTACAAATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14492 GATCGTACAATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14493 GATCGTAGTAATGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14494 GATCGTAGTACGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14495 GATCGTAGTTTACCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14496 GATCGTATCGTCAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14497 GATCGTATCTTCACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14498 GATGACTAGGAAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14499 GATGACTAGGAGAATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14500 GATGACTAGTAGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14501 GATGACTCACGACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14502 GATGACTCAGCACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14503 GATGACTCAGCAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14504 GATGACTCAGCTACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14505 GATGACTGTAGTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14506 GATGACTGTATCCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14507 GATGACTGTCCTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14508 GATGACTGTTGCTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14509 GATGACTGTTGGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14510 GATGACTGTTTACACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14511 GATGACTTCAACCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14512 GATGACTTCAAGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14513 GATGACTTCCCAACTC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14514 GATGACTTCGAGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14515 GATGAGGAGAATAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14516 GATGAGGAGACTTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14517 GATGAGGCAATACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14518 GATGAGGCACAGCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14519 GATGAGGGTGAGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14520 GATGAGGGTGTCACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14521 GATGAGGGTTATCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14522 GATGAGGTCACTTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14523 GATGAGGTCCGCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14524 GATGATCAGCTAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14525 GATGATCCACCAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14526 GATGATCCACGACGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14527 GATGATCCAGTCAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14528 GATGATCGTATCGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14529 GATGATCGTGGTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14530 GATGATCGTGTCCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14531 GATGATCTCACAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14532 GATGATCTCGTCAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14533 GATGCTAAGATACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14534 GATGCTAAGGCACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14535 GATGCTAAGTATTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14536 GATGCTACAGCGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14537 GATGCTACAGCTTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14538 GATGCTACAGTAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14539 GATGCTACATAAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14540 GATGCTACATATGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14541 GATGCTAGTACGACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14542 GATGCTAGTGTGTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14543 GATGCTATCAAAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14544 GATGCTATCATACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14545 GATGCTATCATCTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14546 GATGCTATCCATACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14547 GATGCTATCCTATTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14548 GATGCTATCGTAGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14549 GATGCTATCTATTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14550 GATGGAGAGAACTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14551 GATGGAGAGCCACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14552 GATGGAGAGGCTGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14553 GATGGAGAGTTATGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14554 GATGGAGCAGAAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14555 GATGGAGGTATCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14556 GATGGAGGTCGAAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14557 GATGGAGGTGTTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14558 GATGGAGGTTTCCATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14559 GATGTTGAGACAACTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14560 GATGTTGCAAATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14561 GATGTTGCAGCCTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14562 GATGTTGGTAACAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14563 GATGTTGGTAGTCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14564 GATGTTGGTGTTAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14565 GATGTTGGTTCATCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14566 GATGTTGTCGCATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14567 GATGTTGTCGCTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14568 GATTCGAAGATCCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14569 GATTCGACACAGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14570 GATTCGACATGTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14571 GATTCGAGTACGAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14572 GATTCGAGTATGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14573 GATTCGAGTTTCGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14574 GATTCGATCCGAAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14575 GATTCGATCGCGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14576 GATTCTTAGCCGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14577 GATTCTTAGCTAAACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14578 GATTCTTAGCTGTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14579 GATTCTTCAGCAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14580 GATTCTTTCAGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14581 GATTCTTTCCGTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14582 GATTGGTAGACTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14583 GATTGGTAGTTGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14584 GATTGGTCAAGGCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14585 GATTGGTCAGACACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14586 GATTGGTCAGCGTTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14587 GATTGGTCATAGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14588 GATTGGTCATGGAATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14589 GATTGGTGTCGGTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14590 GATTGGTGTGTCGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14591 GATTGGTTCAATGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14592 GATTGGTTCACAAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14593 GATTGGTTCATCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14594 GATTGGTTCTATCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14595 GATTTCTAGTGGACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14596 GATTTCTCAAGAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14597 GATTTCTCACTGTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14598 GATTTCTCAGTAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14599 GATTTCTCATAACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14600 GATTTCTCATGTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14601 GATTTCTTCATCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14602 GATTTCTTCCTACCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14603 GATTTCTTCGGCTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14604 GATTTCTTCTCACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14605 GCAACATAGCACACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14606 GCAACATAGCTAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14607 GCAACATAGTCCGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14608 GCAACATCAGATCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14609 GCAACATGTCCTACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14610 GCAACATGTGCATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14611 GCAACATGTGTTTACG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14612 GCAACATTCACAGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14613 GCAACATTCATGGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14614 GCAACATTCTCGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14615 GCAACCGAGACGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14616 GCAACCGCACTACTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14617 GCAACCGCATGGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14618 GCAACCGCATGTGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14619 GCAACCGGTATGAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14620 GCAACCGGTCATTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14621 GCAACCGGTCTTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14622 GCAACCGGTGCTGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14623 GCAACCGGTGGAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14624 GCAACCGGTGTTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14625 GCAACCGTCAAACCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14626 GCAACCGTCCTCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14627 GCAACCGTCTGGAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14628 GCAACCGTCTTTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14629 GCACATAAGCGCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14630 GCACATAAGCGTATGG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14631 GCACATAAGTACCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14632 GCACATACAGTGTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14633 GCACATACATACCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14634 GCACATACATTCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14635 GCACATAGTCGTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14636 GCACATAGTGGATGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14637 GCACATATCAACTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14638 GCACATATCCACCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14639 GCACGGTAGTCGGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14640 GCACGGTGTCCGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14641 GCACGGTGTGCATACT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14642 GCACGGTGTGGGATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14643 GCACGGTGTGGTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14644 GCACGGTTCAGTGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14645 GCACGGTTCCTCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14646 GCACGGTTCGTCCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14647 GCACGGTTCTTTCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14648 GCACGTGAGACATACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14649 GCACGTGAGGTTCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14650 GCACGTGAGTAAGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14651 GCACGTGAGTTCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14652 GCACGTGCAATCTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14653 GCACGTGCAATCTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14654 GCACGTGCAGGACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14655 GCACGTGCAGTAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14656 GCACGTGCATCATTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14657 GCACGTGGTACGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14658 GCACGTGGTCTAGTGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14659 GCACGTGTCGTGCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14660 GCACGTGTCGTTCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14661 GCACTAAAGATGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14662 GCACTAAAGCTGCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14663 GCACTAAAGTTCATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14664 GCACTAACACTGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14665 GCACTAACAGGCATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14666 GCACTAACAGTCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14667 GCACTAAGTTCGAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14668 GCACTAAGTTTGTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14669 GCACTAATCCTGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14670 GCACTAATCGTTACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14671 GCACTAATCTCATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14672 GCACTAATCTGGCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14673 GCAGCCAAGAAGCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14674 GCAGCCACAGCTACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14675 GCAGCCACAGGACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14676 GCAGCCAGTCCTGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14677 GCAGCCAGTTCCAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14678 GCAGCCAGTTGTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14679 GCAGCCATCGTGAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14680 GCAGCCATCTAGCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14681 GCAGCTGAGAGTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14682 GCAGCTGAGATTACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14683 GCAGCTGAGGCACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14684 GCAGCTGAGGTCATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14685 GCAGCTGAGTGCAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14686 GCAGCTGCACTCCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14687 GCAGCTGCACTTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14688 GCAGCTGGTACTGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14689 GCAGCTGTCGAATGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14690 GCAGCTGTCGACGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14691 GCAGCTGTCTCCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14692 GCAGCTGTCTGTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14693 GCAGGCTAGCCATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14694 GCAGGCTAGGATTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14695 GCAGGCTCAACTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14696 GCAGGCTCATACTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14697 GCAGGCTCATGTTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14698 GCAGGCTCATTACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14699 GCAGGCTGTACTTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14700 GCAGGCTGTAGACACG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14701 GCAGGCTGTCGTGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14702 GCAGGCTGTCGTTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14703 GCAGGCTGTTCTCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14704 GCAGGCTTCCCTTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14705 GCAGGCTTCCTTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14706 GCAGTTAAGAGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14707 GCAGTTAAGGTTTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14708 GCAGTTAAGTCCTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14709 GCAGTTACAGGCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14710 GCAGTTATCAGCGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14711 GCAGTTATCGGCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14712 GCATCGGAGGTACTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14713 GCATCGGAGTAGGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14714 GCATCGGCACTAGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14715 GCATCGGCATTGACTG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14716 GCATCGGGTGCATGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14717 GCATCGGTCTCGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14718 GCATCTCAGTGGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14719 GCATCTCCAATAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14720 GCATCTCCACATAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14721 GCATCTCCACGTAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14722 GCATCTCCAGCTCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14723 GCATCTCCATGCAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14724 GCATCTCGTCCAGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14725 GCATCTCGTTGAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14726 GCATCTCTCGACTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14727 GCATCTCTCTAATTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14728 GCATGATAGCACGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14729 GCATGATAGGCCACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14730 GCATGATAGGTCCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14731 GCATGATGTTAGGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14732 GCATGATTCCACCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14733 GCATGATTCCTCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14734 GCATTAGAGAGCAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14735 GCATTAGAGGCTTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14736 GCATTAGCAATTGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14737 GCATTAGCATTCCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14738 GCATTAGGTACCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14739 GCATTAGGTCCGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14740 GCATTAGGTCGTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14741 GCATTAGGTGCAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14742 GCATTAGTCGAGTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14743 GCATTAGTCTATCGCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14744 GCCAACGAGGAGGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14745 GCCAACGAGGTGCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14746 GCCAACGCAAGCCATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14747 GCCAACGCACGTTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14748 GCCAACGCAGCCGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14749 GCCAACGCAGTTCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14750 GCCAACGTCAGAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14751 GCCAACGTCCTAGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14752 GCCAACGTCTGGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14753 GCCAGCAAGCATGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14754 GCCAGCAAGTTGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14755 GCCAGCACAATTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14756 GCCAGCACACTCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14757 GCCAGCAGTGTACATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14758 GCCAGCATCACAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14759 GCCAGGTAGACATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14760 GCCAGGTAGCTGGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14761 GCCAGGTAGCTGTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14762 GCCAGGTCAACCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14763 GCCAGGTCACGGTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14764 GCCAGGTCAGGGCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14765 GCCAGGTTCAACTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14766 GCCAGGTTCAGGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14767 GCCAGGTTCCGTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14768 GCCAGGTTCGTCCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14769 GCCAGGTTCTTGGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14770 GCCAGTGAGAGTCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14771 GCCAGTGAGTTACGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14772 GCCAGTGCACCCGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14773 GCCAGTGGTACGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14774 GCCAGTGGTCACCTTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14775 GCCAGTGGTGATACAA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14776 GCCAGTGTCATCAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14777 GCCAGTGTCATGGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14778 GCCAGTGTCATTCATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14779 GCCAGTGTCCGCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14780 GCCAGTGTCTAATTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14781 GCCATGGAGCGCCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14782 GCCATGGAGTCATCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14783 GCCATGGAGTGGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14784 GCCATGGCAGGGCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14785 GCCATGGCAGTCAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14786 GCCATGGCAGTTACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14787 GCCATGGGTATCCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14788 GCCATGGGTCATGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14789 GCCATGGTCAGAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14790 GCCATGGTCCTCACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14791 GCCATGGTCGCCTTTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14792 GCCATTCAGCGAACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14793 GCCATTCAGCTCGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14794 GCCATTCAGGACGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14795 GCCATTCAGGATACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14796 GCCATTCCAACGCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14797 GCCATTCCACGGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14798 GCCATTCCACTGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14799 GCCATTCGTCGCAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14800 GCCATTCGTGGATGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14801 GCCATTCGTGTATACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14802 GCCATTCGTTAATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14803 GCCATTCGTTAGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14804 GCCATTCGTTCCATTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14805 GCCATTCTCAGTGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14806 GCCCAGAAGCACTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14807 GCCCAGAAGGCCTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14808 GCCCAGACACAAATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14809 GCCCAGACAGCCGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14810 GCCCAGAGTACGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14811 GCCCAGAGTCCCTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14812 GCCCAGATCCACATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14813 GCCCAGATCCTACCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14814 GCCCAGATCCTATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14815 GCCCAGATCGGTGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14816 GCCCAGATCGTGGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14817 GCCCAGATCTCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14818 GCCCGAAAGTATTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14819 GCCCGAAAGTCTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14820 GCCCGAACATATCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14821 GCCCGAACATGACAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14822 GCCCGAAGTACGATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14823 GCCCGAAGTCATATGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14824 GCCCGAAGTCATCGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14825 GCCCGAAGTCGCATTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14826 GCCCGAAGTCTTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14827 GCCCGAAGTTGGGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14828 GCCCGAATCGACGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14829 GCCCGAATCTGCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14830 GCCGATGAGCATCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14831 GCCGATGAGGCAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14832 GCCGATGGTCGCACGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14833 GCCGATGGTGTTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14834 GCCGATGGTTCTCACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14835 GCCGATGTCCCTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14836 GCCGTGACATACAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14837 GCCGTGAGTACTCGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14838 GCCGTGAGTGAGTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14839 GCCGTGAGTGGCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14840 GCCGTGAGTTCTGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14841 GCCGTGATCCGCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14842 GCCGTGATCGGTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14843 GCCTGTTAGACCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14844 GCCTGTTAGGCGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14845 GCCTGTTAGTCGCGAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14846 GCCTGTTAGTGGACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14847 GCCTGTTCAATTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14848 GCCTGTTCACAACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14849 GCCTGTTCACTTGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14850 GCCTGTTCAGTGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14851 GCCTGTTCATATGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14852 GCCTGTTGTACAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14853 GCCTGTTGTCTCGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14854 GCCTGTTTCACGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14855 GCCTGTTTCGAACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14856 GCCTGTTTCGTCAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14857 GCGAGAACAAATGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14858 GCGAGAACAATTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14859 GCGAGAACACAAAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14860 GCGAGAACACCGTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14861 GCGAGAACAGCAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14862 GCGAGAACATCGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14863 GCGAGAAGTATTCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14864 GCGAGAAGTCGTGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14865 GCGAGAAGTCTTTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14866 GCGAGAAGTGGTATGG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14867 GCGAGAAGTTGACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14868 GCGAGAAGTTGGAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14869 GCGAGAATCCGTAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14870 GCGAGAATCGACATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14871 GCGAGAATCGTGCACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14872 GCGAGAATCGTGTGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14873 GCGAGAATCTTCCACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14874 GCGATCGAGAGTATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14875 GCGATCGAGCTTTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14876 GCGATCGAGGTGCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14877 GCGATCGCACATTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14878 GCGATCGCATCAGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14879 GCGATCGCATCCTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14880 GCGATCGGTCCGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14881 GCGATCGGTCTCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14882 GCGATCGGTGATAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14883 GCGATCGGTTCAAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14884 GCGATCGTCACGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14885 GCGGAAAAGACTAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14886 GCGGAAAAGCTGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14887 GCGGAAAAGGGCGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14888 GCGGAAAAGGTTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14889 GCGGAAAAGTCCCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14890 GCGGAAAAGTTTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14891 GCGGAAACAAGGGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14892 GCGGAAACAGGTGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14893 GCGGAAACATTCTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14894 GCGGAAAGTGACTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14895 GCGGAAAGTGCATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14896 GCGGAAATCAGTGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14897 GCGGAAATCCCGAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14898 GCGGAAATCTAGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14899 GCGGATCAGAGGATCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14900 GCGGATCAGCTCATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14901 GCGGATCAGGGAGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14902 GCGGATCAGTGCTACT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14903 GCGGATCCACGAGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14904 GCGGATCCACTGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14905 GCGGATCCACTTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14906 GCGGATCCAGGTACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14907 GCGGATCGTAACACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14908 GCGGATCGTCACTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14909 GCGGATCGTGGGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14910 GCGGATCGTTCAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14911 GCGGATCGTTCCGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14912 GCGGATCGTTTGGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14913 GCGGATCTCGCACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14914 GCGGATCTCGTCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14915 GCGTGCAAGGAACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14916 GCGTGCACACGCACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14917 GCGTGCACATGGGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14918 GCGTGCAGTACAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14919 GCGTGCAGTCTGTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14920 GCGTGCATCGCCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14921 GCGTGCATCGGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14922 GCGTTTCAGCTGGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14923 GCGTTTCAGTACAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14924 GCGTTTCCAACTGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14925 GCGTTTCCACGTCATA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14926 GCGTTTCGTCAACATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14927 GCGTTTCTCAACCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14928 GCGTTTCTCATCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14929 GCGTTTCTCCGCACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14930 GCGTTTCTCTCGACCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14931 GCTACAAAGATCCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14932 GCTACAAAGCCACCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14933 GCTACAAAGCCGAACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14934 GCTACAAGTAGTCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14935 GCTACAAGTCCCAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14936 GCTACAAGTCCGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14937 GCTACAAGTGCAAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14938 GCTACAAGTGTTACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14939 GCTACAATCACTACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14940 GCTACAATCGGCACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14941 GCTACAATCTCGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14942 GCTACAATCTGACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14943 GCTACAATCTGGGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14944 GCTACAATCTTCGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14945 GCTACCTAGTACTGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14946 GCTACCTCAATCAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14947 GCTACCTCACAGCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14948 GCTACCTCACTGCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14949 GCTACCTCACTGTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14950 GCTACCTGTACGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14951 GCTACCTGTCAATCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14952 GCTACCTGTCCAGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14953 GCTCAAAAGATGAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14954 GCTCAAAAGCATTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14955 GCTCAAAAGGCGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14956 GCTCAAAAGGGCCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14957 GCTCAAACAAGTGACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14958 GCTCAAAGTAATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14959 GCTCAAAGTACCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14960 GCTCAAAGTGCACATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14961 GCTCAAAGTTCCGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14962 GCTCAAATCATAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14963 GCTCAAATCTCGCTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14964 GCTGAATCACGTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14965 GCTGAATCAGAGAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14966 GCTGAATCAGATCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14967 GCTGAATCAGATGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14968 GCTGAATCAGTATACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14969 GCTGAATCATATCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14970 GCTGAATGTACAGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14971 GCTGAATGTCGAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14972 GCTGAATGTGTCATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14973 GCTGAATGTTGACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14974 GCTGAATGTTTAAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14975 GCTGAATTCACAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14976 GCTGAATTCCCGTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14977 GCTGAATTCCGCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14978 GCTGCAGAGGGCGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14979 GCTGCAGCACATAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14980 GCTGCAGCACGCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14981 GCTGCAGCAGCGAACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14982 GCTGCAGGTACATACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14983 GCTGCAGGTATAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14984 GCTGCAGGTCATCGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14985 GCTGCAGGTTAGGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14986 GCTGCAGGTTCAAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14987 GCTGCAGTCCGACATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14988 GCTGCAGTCTTAGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14989 GCTGGGTAGTTCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14990 GCTGGGTAGTTTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14991 GCTGGGTCATAGCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14992 GCTGGGTGTACAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14993 GCTGGGTGTGACGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14994 GCTGGGTTCAAATAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14995 GCTGGGTTCCTCATAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14996 GCTGGGTTCGAGAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14997 GCTGGGTTCGCAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14998 GCTGGGTTCTGCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
14999 GCTTCACAGGTTCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15000 GCTTCACAGTAGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15001 GCTTCACCAGCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15002 GCTTCACGTAGCCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15003 GCTTCACGTAGGACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15004 GCTTCACGTCGAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15005 GCTTCACGTTATTCCT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15006 GCTTCACTCCTTATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15007 GCTTCACTCGTAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15008 GCTTCACTCTTCGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15009 GCTTGGGAGATGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15010 GCTTGGGAGCCACCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15011 GCTTGGGCAACTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15012 GCTTGGGCAGTTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15013 GCTTGGGCATAGCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15014 GCTTGGGCATCATCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15015 GCTTGGGGTCTAACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15016 GCTTGGGGTGCCGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15017 GCTTGGGGTGTTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15018 GCTTGGGGTTAAACCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15019 GCTTGGGTCGGTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15020 GCTTGGGTCTCTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15021 GCTTTCGAGTCCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15022 GCTTTCGCAGTGTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15023 GCTTTCGGTCACAATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15024 GCTTTCGGTTCCACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15025 GGAACCCAGAGTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15026 GGAACCCCACATATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15027 GGAACCCCAGGCCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15028 GGAACCCCAGGTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15029 GGAACCCGTGGGATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15030 GGAAGTGCAGATCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15031 GGAAGTGCATAGAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15032 GGAAGTGGTGACACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15033 GGAAGTGGTGCCAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15034 GGAAGTGGTTGCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15035 GGAAGTGTCGGCTATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15036 GGAAGTGTCTTAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15037 GGAATCTAGCGTGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15038 GGAATCTAGGGTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15039 GGAATCTAGTGTAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15040 GGAATCTCAAATGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15041 GGAATCTCAAGCCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15042 GGAATCTCACCATATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15043 GGAATCTCAGAGCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15044 GGAATCTGTCCACTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15045 GGAATCTGTGGTGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15046 GGAATCTTCAAGAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15047 GGAATCTTCGTGCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15048 GGAATGGAGGCATCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15049 GGAATGGCACAGCTGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15050 GGAATGGCACTAGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15051 GGAATGGCAGTTACCA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15052 GGAATGGCATAGGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15053 GGAATGGTCGTGTGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15054 GGAATGGTCTACCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15055 GGACGTCAGCATACTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15056 GGACGTCCAAAGGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15057 GGACGTCGTTCCTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15058 GGACGTCTCTACCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15059 GGAGAACAGATACATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15060 GGAGAACAGATCCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15061 GGAGAACAGGGCAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15062 GGAGAACAGTGAATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15063 GGAGAACCAGCAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15064 GGAGAACCATGGCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15065 GGAGAACGTACGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15066 GGAGAACGTTCCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15067 GGAGAACTCATCAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15068 GGAGAACTCCGCAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15069 GGAGAACTCCTATTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15070 GGAGATGAGAAACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15071 GGAGATGAGAAGCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15072 GGAGATGAGACCTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15073 GGAGATGAGACGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15074 GGAGATGAGTGATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15075 GGAGATGCAATGCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15076 GGAGATGCACGGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15077 GGAGATGCACGTAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15078 GGAGATGGTAGGACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15079 GGAGATGGTATCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15080 GGAGATGTCAGCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15081 GGAGATGTCAGTCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15082 GGAGATGTCATACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15083 GGAGATGTCCCTTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15084 GGAGATGTCTACGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15085 GGAGATGTCTGACGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15086 GGAGCAAAGGACGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15087 GGAGCAACATAGGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15088 GGAGCAACATTATGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15089 GGAGCAAGTCGCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15090 GGAGCAAGTGCATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15091 GGAGCAAGTTCCGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15092 GGAGCAAGTTCCGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15093 GGAGCAAGTTGACGGA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15094 GGAGCAAGTTGGGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15095 GGAGCAATCGGCATAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15096 GGAGCAATCGTCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15097 GGAGCAATCTAGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15098 GGAGGATAGACGAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15099 GGAGGATAGGAAAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15100 GGAGGATCAAGCGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15101 GGAGGATGTATCGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15102 GGAGGATGTTGGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15103 GGAGGATTCATCTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15104 GGAGGATTCGGTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15105 GGAGGATTCGTGGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15106 GGAGGATTCGTTCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15107 GGAGGTAAGACAACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15108 GGAGGTAAGATCACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15109 GGAGGTAAGCATTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15110 GGAGGTAAGCCTCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15111 GGAGGTAAGGCCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15112 GGAGGTAAGTGGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15113 GGAGGTACAAGACGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15114 GGAGGTACACTTGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15115 GGAGGTACAGAACGCA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15116 GGAGGTACAGTTGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15117 GGAGGTACATCCTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15118 GGAGGTACATGGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15119 GGAGGTACATGTGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15120 GGAGGTAGTAACACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15121 GGAGGTAGTATCGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15122 GGAGGTAGTATGTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15123 GGAGGTATCCAATCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15124 GGAGGTATCCGATAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15125 GGAGGTATCGAAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15126 GGAGGTATCTGCGGGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15127 GGATCTAAGCCATATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15128 GGATCTAAGCGATGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15129 GGATCTAAGGCACTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15130 GGATCTACACAGTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15131 GGATCTAGTACGATGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15132 GGATCTAGTGAGTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15133 GGATGTTAGACATGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15134 GGATGTTCAATAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15135 GGATGTTCACATATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15136 GGATGTTCACTTGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15137 GGATGTTCATACACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15138 GGATGTTCATTCAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15139 GGATGTTGTAAGTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15140 GGATGTTGTACAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15141 GGATGTTTCAAACTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15142 GGCACGTAGAAGTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15143 GGCACGTAGAGAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15144 GGCACGTAGCAGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15145 GGCACGTAGCCATATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15146 GGCACGTAGGTCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15147 GGCACGTAGTCACTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15148 GGCACGTCAACTCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15149 GGCACGTCACGAGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15150 GGCACGTGTCCATACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15151 GGCACGTTCGTTAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15152 GGCAGTCAGAGTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15153 GGCAGTCAGCCGTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15154 GGCAGTCAGCGGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15155 GGCAGTCAGGAATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15156 GGCAGTCAGGAGCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15157 GGCAGTCAGTAGTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15158 GGCAGTCAGTCGTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15159 GGCAGTCAGTCTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15160 GGCAGTCAGTGCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15161 GGCAGTCCAAAGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15162 GGCAGTCCAACTGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15163 GGCAGTCCAATACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15164 GGCAGTCCACCCTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15165 GGCAGTCCAGCGTACC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15166 GGCAGTCGTGGTCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15167 GGCAGTCGTGTGTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15168 GGCAGTCTCAATCCAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15169 GGCAGTCTCCTTTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15170 GGCAGTCTCTAATTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15171 GGCAGTCTCTTTGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15172 GGCGTCAAGACAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15173 GGCGTCAAGGCTCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15174 GGCGTCACAAAGAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15175 GGCGTCACACACCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15176 GGCGTCACACGTATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15177 GGCGTCACAGGTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15178 GGCGTCAGTCCTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15179 GGCGTCAGTGGATGAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15180 GGCGTCAGTGTATTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15181 GGCGTCAGTTACAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15182 GGCGTCAGTTGGTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15183 GGCGTCATCCGACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15184 GGCGTCATCGGTCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15185 GGCGTCATCGTAATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15186 GGCTGTGAGGGTCACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15187 GGCTGTGCAAGCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15188 GGCTGTGCACTTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15189 GGCTGTGCAGACACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15190 GGCTGTGCAGAGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15191 GGCTGTGCAGCTCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15192 GGCTGTGGTCCCGGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15193 GGCTGTGGTGCTTATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15194 GGCTGTGTCTACAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15195 GGCTTGGAGCTAAACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15196 GGCTTGGAGGATACGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15197 GGCTTGGAGGTTCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15198 GGCTTGGCAAATACGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15199 GGCTTGGCAACGGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15200 GGCTTGGCACTCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15201 GGCTTGGCACTGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15202 GGCTTGGCAGATGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15203 GGCTTGGCAGGTATGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15204 GGCTTGGGTAGTGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15205 GGCTTGGGTCGAAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15206 GGCTTGGTCGCCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15207 GGCTTGGTCGGTCATA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15208 GGCTTGGTCTATTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15209 GGCTTTCAGAAGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15210 GGCTTTCAGATAGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15211 GGCTTTCCAAAGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15212 GGCTTTCCACAAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15213 GGCTTTCCATCTATCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15214 GGCTTTCGTACTCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15215 GGCTTTCGTAGCGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15216 GGCTTTCGTGGAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15217 GGCTTTCGTTGCCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15218 GGCTTTCTCAAGAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15219 GGGAAGTAGCGCACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15220 GGGAAGTAGCTGGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15221 GGGAAGTAGGTAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15222 GGGAAGTCAAGCGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15223 GGGAAGTGTCATTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15224 GGGAAGTGTGGAAATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15225 GGGAAGTGTTAATGAG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15226 GGGAAGTTCGTCCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15227 GGGACAAAGAGGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15228 GGGACAAAGAGTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15229 GGGACAAAGCCTGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15230 GGGACAACAAAGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15231 GGGACAACAACCACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15232 GGGACAACAAGCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15233 GGGACAACAAGTATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15234 GGGACAACATCGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15235 GGGACAACATCTATCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15236 GGGACAAGTAACTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15237 GGGACAAGTAGATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15238 GGGACAAGTATCCTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15239 GGGACAAGTCGAAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15240 GGGACAAGTGACCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15241 GGGACAAGTGCTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15242 GGGACAAGTTTACTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15243 GGGACAATCACACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15244 GGGACAATCGCAATGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15245 GGGACAATCGCTAATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15246 GGGACCTAGAGTGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15247 GGGACCTAGCGTGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15248 GGGACCTAGTAGAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15249 GGGACCTAGTGCGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15250 GGGACCTCAAACGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15251 GGGACCTCAACCGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15252 GGGACCTCACACCGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15253 GGGACCTCAGTAACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15254 GGGACCTCAGTCAACT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15255 GGGACCTGTAAGTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15256 GGGACCTGTGGACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15257 GGGACCTGTTCCTACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15258 GGGACCTGTTCGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15259 GGGACCTTCCACCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15260 GGGACTCCACGGAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15261 GGGACTCCAGACCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15262 GGGACTCCATAACCCA SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15263 GGGACTCCATGACTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15264 GGGACTCGTCCACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15265 GGGACTCGTGTAACGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15266 GGGACTCGTTAAACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15267 GGGACTCGTTACAGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15268 GGGACTCTCTAGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15269 GGGACTCTCTCAACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15270 GGGAGATAGATACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15271 GGGAGATAGGTCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15272 GGGAGATCAACCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15273 GGGAGATCACAATGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15274 GGGAGATCACTATCCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15275 GGGAGATCATTGGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15276 GGGAGATGTCCGGTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15277 GGGAGATGTCGTCGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15278 GGGAGATGTTCGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15279 GGGAGATTCAAAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15280 GGGAGATTCATCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15281 GGGAGATTCCGTGTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15282 GGGAGATTCGAAATCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15283 GGGAGATTCTAGTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15284 GGGAGTAAGACTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15285 GGGAGTACAAAGGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15286 GGGAGTACAAATTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15287 GGGAGTACAACTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15288 GGGAGTACAAGTGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15289 GGGAGTACACAGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15290 GGGAGTACACGCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15291 GGGAGTACAGTGCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15292 GGGAGTACATCTGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15293 GGGAGTAGTACTGACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15294 GGGAGTAGTGGTACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15295 GGGAGTAGTTCTAACG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15296 GGGAGTATCAAACTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15297 GGGAGTATCACCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15298 GGGAGTATCAGCCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15299 GGGAGTATCCATTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15300 GGGAGTATCGAAACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15301 GGGAGTATCGATAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15302 GGGATCCAGCTGAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15303 GGGATCCAGGAAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15304 GGGATCCCAATACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15305 GGGATCCCATCAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15306 GGGATCCCATCCGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15307 GGGATCCGTACGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15308 GGGATCCGTCATCGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15309 GGGATCCGTCGAGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15310 GGGATCCGTGGTACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15311 GGGATCCGTTAAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15312 GGGATCCTCCTTTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15313 GGGATCCTCGCATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15314 GGGATCCTCTGGAAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15315 GGGATCCTCTGTCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15316 GGGATGAAGAAGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15317 GGGATGAAGGAGGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15318 GGGATGACAATCCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15319 GGGATGACACCCGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15320 GGGATGACACCCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15321 GGGATGACAGCGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15322 GGGATGAGTGTGTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15323 GGGATGAGTTAGGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15324 GGGATGATCATACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15325 GGGATGATCGCCTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15326 GGGCCATCACGCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15327 GGGCCATCATCAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15328 GGGCCATGTAGACAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15329 GGGCCATGTGCACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15330 GGGCCATGTGGGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15331 GGGCCATGTGGTCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15332 GGGCCATGTTAACCTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15333 GGGCCATTCAGAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15334 GGGCCATTCGTTCCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15335 GGGCCATTCTAACGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15336 GGGCCATTCTCCGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15337 GGGCGTTAGCAAATCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15338 GGGCGTTAGCACTCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15339 GGGCGTTAGCGAGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15340 GGGCGTTCAAAGGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15341 GGGCGTTCACCGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15342 GGGCGTTCACGCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15343 GGGCGTTGTAGAAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15344 GGGCGTTTCGCAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15345 GGGCGTTTCTGTGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15346 GGGCGTTTCTTAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15347 GGGCTACAGTACGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15348 GGGCTACCAACGTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15349 GGGCTACCACGCTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15350 GGGCTACCAGCAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15351 GGGCTACGTACAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15352 GGGCTACGTTGTTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15353 GGGCTACGTTTGGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15354 GGGCTACTCGCAAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15355 GGGCTACTCGCGTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15356 GGGCTACTCTCATTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15357 GGGCTCAAGAAGGCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15358 GGGCTCACACGTAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15359 GGGCTCACAGCACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15360 GGGCTCACAGCCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15361 GGGCTCACAGTTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15362 GGGCTCAGTGAATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15363 GGGCTCAGTGCTCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15364 GGGCTCAGTTTCTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15365 GGGCTCATCAAATAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15366 GGGCTCATCAAGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15367 GGGCTCATCAGGTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15368 GGGCTCATCGAAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15369 GGGTAGAAGACTAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15370 GGGTAGAAGCCTCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15371 GGGTAGACAGACCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15372 GGGTAGAGTAACATGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15373 GGGTAGAGTAACCAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15374 GGGTAGAGTCAGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15375 GGGTAGATCACTGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15376 GGGTAGATCATGAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15377 GGGTAGATCGTTATCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15378 GGGTATTAGAGTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15379 GGGTATTAGGCTTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15380 GGGTATTAGGGTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15381 GGGTATTAGTAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15382 GGGTATTCAATTGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15383 GGGTATTCACTCATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15384 GGGTATTCACTGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15385 GGGTATTCAGGGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15386 GGGTATTGTATGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15387 GGGTATTGTATGGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15388 GGGTATTGTCCGTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15389 GGGTCACAGAGAGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15390 GGGTCACAGGCTAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15391 GGGTCACAGGTAAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15392 GGGTCACGTATTCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15393 GGGTCACGTATTGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15394 GGGTCACGTCACCACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15395 GGGTCACGTCACGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15396 GGGTCACGTGCAAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15397 GGGTCACGTTAAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15398 GGGTCACGTTGATGTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15399 GGGTCACTCAAGAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15400 GGGTCACTCTGTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15401 GGGTCACTCTTCGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15402 GGGTCTGAGAAACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15403 GGGTCTGAGCATGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15404 GGGTCTGAGGCAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15405 GGGTCTGAGTCGCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15406 GGGTCTGCAACCACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15407 GGGTCTGCAATCTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15408 GGGTCTGCAGACAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15409 GGGTCTGCATTGTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15410 GGGTCTGGTCCACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15411 GGGTCTGGTGTTCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15412 GGGTCTGTCGCATGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15413 GGGTCTGTCGTAGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15414 GGGTGAAAGATTAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15415 GGGTGAAAGGCACGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15416 GGGTGAAAGGGTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15417 GGGTGAAAGGTTGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15418 GGGTGAACAAGCAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15419 GGGTGAACAGAAGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15420 GGGTGAAGTACTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15421 GGGTGAAGTGACAACG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15422 GGGTGAAGTTGACGGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15423 GGGTGAAGTTGAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15424 GGGTGAAGTTTCAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15425 GGGTGAATCAAGTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15426 GGGTGAATCAGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15427 GGGTGAATCCGTGGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15428 GGGTGAATCTGCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15429 GGGTGTCAGAAATCCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15430 GGGTGTCAGAGTCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15431 GGGTGTCAGTAGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15432 GGGTGTCCAAACCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15433 GGGTGTCCACAGCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15434 GGGTGTCCACATGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15435 GGGTGTCCAGAGAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15436 GGGTGTCGTCACGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15437 GGGTGTCGTCGCCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15438 GGGTGTCGTGTTCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15439 GGGTGTCGTTCAGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15440 GGGTGTCTCAGAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15441 GGGTGTCTCATATGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15442 GGGTGTCTCCCAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15443 GGGTGTCTCCCTCTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15444 GGGTGTCTCTACAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15445 GGGTGTCTCTCCGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15446 GGGTGTCTCTTGTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15447 GGGTTATAGCCGATAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15448 GGGTTATCAAATGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15449 GGGTTATCAGACACAG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15450 GGGTTATGTCAGCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15451 GGGTTATGTGCGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15452 GGGTTATGTGCTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15453 GGGTTTAAGAGCTTTC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15454 GGGTTTACAGAGGTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15455 GGGTTTACAGCTAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15456 GGGTTTACATTAGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15457 GGGTTTAGTCACTCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15458 GGGTTTAGTCCACATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15459 GGGTTTATCCACTTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15460 GGGTTTATCCGTCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15461 GGGTTTATCCGTTTCG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15462 GGGTTTATCGGTTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15463 GGGTTTATCTCCCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15464 GGTAACTAGCCATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15465 GGTAACTAGTTACGTC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15466 GGTAACTAGTTCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15467 GGTAACTAGTTGGAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15468 GGTAACTCAAGCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15469 GGTAACTCAATAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15470 GGTAACTCACAATTCG SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15471 GGTAACTCACAGTCGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15472 GGTAACTCACATGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15473 GGTAACTCATGTTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15474 GGTAACTGTACAGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15475 GGTAACTGTCCATCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15476 GGTAACTTCACTCACC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15477 GGTAACTTCATTACCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15478 GGTAACTTCCAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15479 GGTAACTTCGAGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15480 GGTAACTTCGGCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15481 GGTAACTTCTTGCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15482 GGTAATCAGCGTGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15483 GGTAATCAGCGTGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15484 GGTAATCAGCTGGTGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15485 GGTAATCAGGTTACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15486 GGTAATCCACATGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15487 GGTAATCCACCCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15488 GGTAATCCACGACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15489 GGTAATCCACTAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Vein endothelial cell nan nan nan CL:0002543 vein endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15490 GGTAATCCAGACCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15491 GGTAATCGTCACCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15492 GGTAATCGTCTAACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15493 GGTAATCGTTCAGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15494 GGTAATCGTTCGGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15495 GGTAATCGTTCGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15496 GGTAATCTCATTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15497 GGTAATCTCATTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15498 GGTAATCTCCGTATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15499 GGTAATCTCTGAGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15500 GGTAGAGAGACGATAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15501 GGTAGAGAGCCAACCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15502 GGTAGAGAGGTTGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15503 GGTAGAGCATGGACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15504 GGTAGAGCATTGACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15505 GGTAGAGGTCTCTCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15506 GGTAGAGGTTGTGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15507 GGTAGAGTCAAGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15508 GGTAGAGTCATTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15509 GGTAGAGTCGAACCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15510 GGTAGAGTCTTTCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15511 GGTCACGAGAGATGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15512 GGTCACGAGCTGAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15513 GGTCACGAGGCCATAG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15514 GGTCACGAGTCACACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15515 GGTCACGCAAATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15516 GGTCACGCACTCAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15517 GGTCACGCAGGACTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15518 GGTCACGGTCGCATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15519 GGTCACGGTCTCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15520 GGTCACGGTTAGGACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15521 GGTCACGTCACCCTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15522 GGTCACGTCAGAGTGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15523 GGTCACGTCCCAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15524 GGTCACGTCGATTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15525 GGTCACGTCTAGTGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15526 GGTCTGGAGAGTCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15527 GGTCTGGCATCATCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15528 GGTCTGGCATTGTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15529 GGTCTGGGTCAAGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15530 GGTCTGGGTTTCCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15531 GGTCTGGTCAGCGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15532 GGTCTGGTCATTCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15533 GGTCTGGTCCGATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15534 GGTCTGGTCTTAATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15535 GGTGAAGAGGTACAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15536 GGTGAAGAGTAGTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15537 GGTGAAGCACATATGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15538 GGTGAAGCACGATAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15539 GGTGAAGCAGTCAGCC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15540 GGTGAAGGTACATACC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15541 GGTGAAGTCCAATCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15542 GGTGAAGTCGATGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15543 GGTGAAGTCTCCTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15544 GGTGATTAGAACAGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15545 GGTGATTAGGCACTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15546 GGTGATTAGTAAACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15547 GGTGATTCAACCCGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15548 GGTGATTGTCAAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15549 GGTGATTGTCAACACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15550 GGTGATTGTGCGTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15551 GGTGATTGTTGGGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15552 GGTGATTTCAAGAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15553 GGTGATTTCAGCGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15554 GGTGATTTCCATAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15555 GGTGATTTCCGCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15556 GGTGATTTCTACTATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15557 GGTGGCTAGAACGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15558 GGTGGCTAGAGGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15559 GGTGGCTAGGTATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15560 GGTGGCTAGTGGCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15561 GGTGGCTCAAATGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15562 GGTGGCTCAATACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15563 GGTGGCTCAGAACCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15564 GGTGGCTCATACAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15565 GGTGGCTGTAGTTAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15566 GGTGGCTGTGCGTGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15567 GGTGTCGAGACTAGAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15568 GGTGTCGAGCATTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15569 GGTGTCGAGGCTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15570 GGTGTCGAGGGTGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15571 GGTGTCGCAAACTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15572 GGTGTCGCAAAGCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15573 GGTGTCGCAATAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15574 GGTGTCGCAGCCCACA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15575 GGTGTCGCAGTATTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15576 GGTGTCGGTCAGACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15577 GGTGTCGTCAGCTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15578 GGTGTCGTCAGTGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15579 GGTGTCGTCATCGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15580 GGTGTCGTCTACGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15581 GGTGTTAAGGGACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15582 GGTGTTACACTAACGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15583 GGTGTTAGTCTCGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15584 GGTGTTAGTGCCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15585 GGTGTTAGTTCGGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15586 GGTGTTATCAATCCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15587 GGTGTTATCACCCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15588 GGTGTTATCCAGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15589 GGTGTTATCCCTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15590 GGTGTTATCGCCCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15591 GGTGTTATCTCGTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15592 GGTTAACCATGTTTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15593 GGTTAACGTAATCAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15594 GGTTAACGTAGCTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15595 GGTTAACGTCGAAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15596 GGTTAACGTCTAACTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15597 GGTTAACTCCCATTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15598 GGTTAACTCCTCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15599 GGTTAACTCCTGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15600 GGTTCTCAGACGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15601 GGTTCTCAGGCAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15602 GGTTCTCAGTCCCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15603 GGTTCTCAGTTTGGCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15604 GGTTCTCCAAGAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15605 GGTTCTCCAATTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15606 GGTTCTCGTACTTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15607 GGTTCTCGTGCAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15608 GGTTCTCGTTGCATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15609 GGTTCTCGTTTGACAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15610 GGTTCTCTCATCACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15611 GGTTGTAAGCATCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15612 GGTTGTAAGGGCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15613 GGTTGTACAGTTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15614 GGTTGTACATCCAACA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15615 GGTTGTAGTTCTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15616 GGTTGTATCCCATAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15617 GGTTGTATCTCTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15618 GTAACACAGCAACTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15619 GTAACACAGCTCCCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15620 GTAACACAGTCCCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15621 GTAACACCAAACCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15622 GTAACACCACCAGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15623 GTAACACCACGTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15624 GTAACACCAGCAGACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15625 GTAACACCAGCTTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15626 GTAACACCAGTTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15627 GTAACACGTACGGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15628 GTAACACGTATCCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15629 GTAACACGTCACGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15630 GTAACACGTCGAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15631 GTAACACTCATTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15632 GTAACCAAGACGTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15633 GTAACCAAGGGTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15634 GTAACCAAGTAGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15635 GTAACCAGTCGTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15636 GTAACCAGTCGTTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15637 GTAACCAGTGGAAATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15638 GTAACCAGTGTAAACA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15639 GTAACCAGTGTCATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15640 GTAACCAGTTCGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15641 GTAACCATCCTTATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15642 GTAACCATCTCGCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15643 GTAAGTCAGCACACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15644 GTAAGTCAGTCTAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15645 GTAAGTCCAGGCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15646 GTAAGTCGTATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15647 GTAAGTCTCAATGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15648 GTAAGTCTCCGTGACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15649 GTAAGTCTCGCAAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15650 GTAAGTCTCGTAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15651 GTAAGTCTCGTAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15652 GTAATCGAGAGGTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15653 GTAATCGAGTGGGAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15654 GTAATCGGTACAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15655 GTAATCGGTACGCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15656 GTAATCGGTCACCTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15657 GTAATCGGTGCAACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15658 GTAATCGGTGTTAAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15659 GTAATCGGTTAAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15660 GTAATCGTCGGCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15661 GTAATCGTCTCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15662 GTAATGCAGTCATAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15663 GTAATGCCAACACGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15664 GTAATGCCAAGCCATT SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15665 GTAATGCCAGCGAACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15666 GTAATGCGTATAATGG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15667 GTAATGCGTGCACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15668 GTAATGCGTGGTCCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15669 GTAATGCGTTCGTGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15670 GTAATGCTCCCGAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15671 GTAATGCTCCTTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15672 GTAATGCTCGGTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15673 GTAATGCTCTGTCGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15674 GTAATGCTCTTAGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15675 GTACAACAGCGTCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15676 GTACAACCAGCAATTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15677 GTACAACCATGTGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15678 GTACAACGTAAGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15679 GTACAACGTGAATAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15680 GTACAACGTGAATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15681 GTACAACGTGTAAATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15682 GTACAACGTTACGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15683 GTACAACGTTGGGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15684 GTACAACTCCGTGACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15685 GTACAACTCGAGCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15686 GTACAACTCGGAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15687 GTACAACTCTTTGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15688 GTACAGTAGCTTTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15689 GTACAGTAGGAGGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15690 GTACAGTAGTAATTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15691 GTACAGTAGTACGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15692 GTACAGTCAGGTTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15693 GTACAGTCATGCCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15694 GTACAGTGTACTTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15695 GTACAGTTCCAGGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15696 GTACAGTTCGCTTACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15697 GTACAGTTCTCTCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15698 GTACAGTTCTTCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15699 GTAGAAAAGATTAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15700 GTAGAAAAGCGCTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15701 GTAGAAAAGGGTAATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15702 GTAGAAAAGTCAACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15703 GTAGAAACACCTCGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15704 GTAGAAACACTTGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15705 GTAGAAAGTCATTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15706 GTAGAAAGTCCAATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15707 GTAGAAAGTGTCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15708 GTAGAAAGTTGGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15709 GTAGAAATCCTCTAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15710 GTAGAAATCTATTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15711 GTAGAGGAGCCAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15712 GTAGAGGAGGTAGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15713 GTAGAGGAGTACAACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15714 GTAGAGGAGTAGGATT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15715 GTAGAGGAGTATAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15716 GTAGAGGCAATTTCGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15717 GTAGAGGCACCGGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15718 GTAGAGGGTACGTAGG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15719 GTAGAGGGTAGAGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15720 GTAGAGGGTCACTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15721 GTAGAGGGTGATACTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15722 GTAGAGGGTGGACCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15723 GTAGAGGTCAAGTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15724 GTAGAGGTCCATTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15725 GTAGATCAGCCTTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15726 GTAGATCAGCTTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15727 GTAGATCCACACCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15728 GTAGATCCACCGTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15729 GTAGATCGTTCAATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15730 GTAGATCTCACAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15731 GTAGATCTCAGTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15732 GTAGATCTCCTACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15733 GTAGATCTCTGTGCGG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15734 GTAGCTAAGAGCCATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15735 GTAGCTAAGTGAACAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15736 GTAGCTACACCTAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15737 GTAGCTACATATGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15738 GTAGCTAGTATGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15739 GTAGCTAGTCCTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15740 GTAGCTATCGTACACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15741 GTAGGAGAGATACTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15742 GTAGGAGAGTAGATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15743 GTAGGAGCAAGCTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15744 GTAGGAGCATAAGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15745 GTAGGAGGTACCTAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15746 GTAGGAGGTTTCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15747 GTAGGAGTCACCATCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15748 GTAGGAGTCACCGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15749 GTAGGAGTCAGTGTCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15750 GTAGGAGTCGCTTTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15751 GTAGGAGTCTATCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15752 GTAGGTTAGACTCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15753 GTAGGTTAGCCATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15754 GTAGGTTAGCCTATCA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15755 GTAGGTTAGGTAATCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15756 GTAGGTTAGGTACCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15757 GTAGGTTCAAAGGGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15758 GTAGGTTCAAAGGTTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15759 GTAGGTTCAGATAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15760 GTAGGTTGTAGCTTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15761 GTAGGTTGTCTCCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15762 GTAGGTTGTGTTCGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15763 GTAGGTTTCAACTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15764 GTAGGTTTCCTTATCA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15765 GTAGTACAGGTTAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15766 GTAGTACCATTGGATC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15767 GTAGTACGTCTATGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15768 GTAGTACGTCTCTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15769 GTAGTACTCAGGACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15770 GTAGTACTCGCCGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15771 GTAGTACTCTGGTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15772 GTATTGGAGATACCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15773 GTATTGGAGCGCGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15774 GTATTGGAGGATTCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15775 GTATTGGCAACCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15776 GTATTGGGTAGCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15777 GTATTGGGTTGCATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15778 GTATTGGTCACGACTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15779 GTATTGGTCACGATAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15780 GTATTGGTCATTGGTG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15781 GTATTGGTCGAGAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15782 GTATTGGTCTTCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15783 GTATTTCAGACTACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15784 GTATTTCAGAGTACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15785 GTATTTCAGCTGAGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15786 GTATTTCAGTGCAACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15787 GTATTTCAGTGCCGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15788 GTATTTCCAAACAGGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15789 GTATTTCCAAGGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15790 GTATTTCCAAGTGGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15791 GTATTTCCAGACCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15792 GTATTTCCAGTCAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15793 GTATTTCCATAGATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15794 GTATTTCGTACCATAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15795 GTATTTCGTACGGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15796 GTATTTCGTCAACCAT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15797 GTATTTCGTCTTGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15798 GTATTTCGTTCGGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15799 GTATTTCGTTGGGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15800 GTATTTCTCCCGTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15801 GTATTTCTCGCCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15802 GTCAAACAGAAGCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15803 GTCAAACAGAGATCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15804 GTCAAACAGCGAAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15805 GTCAAACAGGTATCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15806 GTCAAACCAAAGGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15807 GTCAAACCAAGCTACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15808 GTCAAACCAATACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15809 GTCAAACCACATCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15810 GTCAAACCACTTTATC SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15811 GTCAAACCATCCGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15812 GTCAAACCATTGCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15813 GTCAAACGTACCGCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15814 GTCAAACGTACCTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15815 GTCAAACGTCCACATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15816 GTCAAACGTTCTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15817 GTCAAACTCAGACCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15818 GTCAAGTAGATACATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15819 GTCAAGTAGGATATAC SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15820 GTCAAGTAGTCATAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15821 GTCAAGTCACAGAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15822 GTCAAGTCAGTTGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15823 GTCAAGTGTGCATGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15824 GTCAAGTGTTAAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15825 GTCAAGTGTTGCCAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15826 GTCAAGTGTTGCTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15827 GTCAAGTTCCATAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15828 GTCAAGTTCGATACTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15829 GTCAAGTTCTCTCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15830 GTCAAGTTCTGTGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15831 GTCAAGTTCTGTGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15832 GTCACGGAGATGTTGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15833 GTCACGGGTGATCATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15834 GTCACGGGTTAAGACA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15835 GTCACGGTCATACGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15836 GTCACGGTCCAAGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15837 GTCACTCAGGAACTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15838 GTCACTCAGGTGAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15839 GTCACTCAGTAGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15840 GTCACTCAGTGGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15841 GTCACTCAGTTCAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15842 GTCACTCCAGATTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15843 GTCACTCGTCTTGCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15844 GTCAGCGAGCTGCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15845 GTCAGCGCAAGGAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15846 GTCAGCGCACAATGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15847 GTCAGCGCACCATATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15848 GTCAGCGCAGTCAACT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15849 GTCAGCGCATGTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15850 GTCAGCGCATGTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15851 GTCAGCGGTAGTCGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15852 GTCAGCGGTCATAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15853 GTCAGCGGTCGACTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15854 GTCAGCGGTCTATGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15855 GTCAGCGGTGGGCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15856 GTCAGCGGTGTTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15857 GTCAGCGGTTTGGGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15858 GTCAGCGTCGGCATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15859 GTCATCCAGACGTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15860 GTCATCCAGCTAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15861 GTCATCCAGGATCATA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15862 GTCATCCAGGTGAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15863 GTCATCCCACAACATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15864 GTCATCCCACTCCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15865 GTCATCCCATGTCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15866 GTCATCCGTCCACATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15867 GTCATCCGTGGCGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15868 GTCATCCGTTACACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15869 GTCATCCGTTCGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15870 GTCATCCTCGTCCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15871 GTCATCCTCGTGTGAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15872 GTCATCCTCTCCCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15873 GTCATGAAGCAGCACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15874 GTCATGAAGCGTGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15875 GTCATGAAGGTTGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15876 GTCATGAAGTTAGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15877 GTCATGACACATATCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15878 GTCATGACATGTGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15879 GTCATGAGTATGCGGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15880 GTCATGAGTCGAACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15881 GTCATGATCCAAACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15882 GTCATGATCCCAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15883 GTCATGATCGTAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15884 GTCATTTAGCCTCAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15885 GTCATTTAGGTGCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15886 GTCATTTCATAGACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15887 GTCATTTGTCAAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15888 GTCATTTGTTACCCTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15889 GTCCACTAGAGAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15890 GTCCACTAGCATGATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15891 GTCCACTAGCTAAATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15892 GTCCACTAGGACTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15893 GTCCACTAGGATAATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15894 GTCCACTCAAAGACGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15895 GTCCACTGTCGTCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15896 GTCCACTTCTGCAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15897 GTCCCATAGTTGCCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15898 GTCCCATCAACGTTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15899 GTCCCATCAATATCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15900 GTCCCATCACCAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15901 GTCCCATCAGACATCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15902 GTCCCATGTACGATTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15903 GTCCCATTCATTCCTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15904 GTCCCATTCTACTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15905 GTCCCATTCTCATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15906 GTCCTCAAGACTTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15907 GTCCTCAAGCTTCATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15908 GTCCTCAAGGGTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15909 GTCCTCACACGCACCA SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15910 GTCCTCACACTGAATC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15911 GTCCTCACATCGGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15912 GTCCTCAGTGGTCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15913 GTCCTCATCGTTGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15914 GTCCTCATCTCGCTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15915 GTCGAATAGCACGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15916 GTCGAATAGCTGGTGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15917 GTCGAATAGTGCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15918 GTCGAATCAGGGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15919 GTCGAATTCCGAGAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15920 GTCGAATTCTTGGGCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15921 GTCGCGAAGAATTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15922 GTCGCGAAGCGTGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15923 GTCGCGACAAGTCCCG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15924 GTCGCGACATGACAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15925 GTCGCGACATGTGGCC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15926 GTCGCGACATTGTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15927 GTCGCGAGTGGGAGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15928 GTCGTAAAGAGTAACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15929 GTCGTAACACCTTCGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15930 GTCGTAACACTGATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15931 GTCGTAACAGATTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15932 GTCGTAACAGTGTGCC SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15933 GTCGTAAGTGATTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15934 GTCGTAAGTGGCCACT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15935 GTCGTAATCAAGGCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15936 GTCGTAATCCAAAGGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15937 GTCGTTCAGCGCCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15938 GTCGTTCAGGCTTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15939 GTCGTTCCAAGGAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15940 GTCGTTCCAATCCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15941 GTCGTTCCAGCTGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15942 GTCGTTCGTGTCCATA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15943 GTCGTTCTCGACATCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15944 GTCGTTCTCTGCAGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15945 GTCGTTCTCTTGCAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15946 GTCTACCAGACCCGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15947 GTCTACCAGCTCCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15948 GTCTACCCAAGTGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15949 GTCTACCCACGGTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15950 GTCTACCCACGTAGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15951 GTCTACCCAGATCCAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15952 GTCTACCGTATCGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15953 GTCTACCGTTGTCCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15954 GTCTACCTCGTTCTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15955 GTCTACCTCTACCACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15956 GTCTAGAAGCAGCCTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15957 GTCTAGAAGTCCTGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15958 GTCTAGAAGTTTGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15959 GTCTAGACAGCAGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15960 GTCTAGAGTACACGTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15961 GTCTAGAGTACTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15962 GTCTAGAGTCAGGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15963 GTCTAGAGTGCTTCAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15964 GTCTAGAGTGTGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15965 GTCTAGAGTTATCTGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15966 GTCTAGAGTTCGCGTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15967 GTCTAGAGTTGTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15968 GTCTCACAGCATGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15969 GTCTCACAGGTCCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15970 GTCTCACAGTGCGACA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15971 GTCTCACCAAATACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15972 GTCTCACCAAGCCCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15973 GTCTCACCAATGGGTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15974 GTCTCACCACGCACCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15975 GTCTCACCAGAGAATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15976 GTCTCACCATACCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15977 GTCTCACCATCGTGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15978 GTCTCACGTCCTATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15979 GTCTCACGTTCTTCAT SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15980 GTCTCACTCCGAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15981 GTCTCACTCCGCGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15982 GTCTCACTCGAACCAT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15983 GTCTCACTCTGAATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15984 GTCTGTCAGCCTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15985 GTCTGTCAGCTGAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15986 GTCTGTCAGGTAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15987 GTCTGTCAGGTCACTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15988 GTCTGTCAGGTCTGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15989 GTCTGTCAGTCTAGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15990 GTCTGTCAGTGTTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15991 GTCTGTCCATCCGATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15992 GTCTGTCGTAAGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15993 GTCTGTCGTGAGCCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15994 GTCTGTCGTGCTCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15995 GTCTGTCGTGTTTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15996 GTCTGTCTCGTCCATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15997 GTCTTTAAGCATGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15998 GTCTTTAAGGTCACAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
15999 GTCTTTAAGTTCATGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16000 GTCTTTACACCGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16001 GTCTTTACAGAGTCAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16002 GTCTTTAGTGATTCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16003 GTCTTTATCAAGGAGC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16004 GTCTTTATCACCCATC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16005 GTCTTTATCTTAGCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16006 GTGACGCAGATGCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16007 GTGACGCAGCGACAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16008 GTGACGCAGTAGTCTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16009 GTGACGCCAAATGATG SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16010 GTGACGCCAAGGTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16011 GTGACGCCACAATCTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16012 GTGACGCCAGGAGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16013 GTGACGCGTATGTCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16014 GTGACGCGTCTTTATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16015 GTGACGCGTTGTCTAG SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16016 GTGACGCTCCACACCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16017 GTGACGCTCGAACGCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16018 GTGACGCTCTCCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16019 GTGACGCTCTTCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16020 GTGAGCCAGGTGCTGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16021 GTGAGCCAGTAGCATA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16022 GTGAGCCCATGTACGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16023 GTGAGCCGTCGTATTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16024 GTGAGCCTCCACAAGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16025 GTGAGCCTCGAGTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16026 GTGAGCCTCGGACCAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16027 GTGAGGAAGCTTGTTG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16028 GTGAGGACACTTCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16029 GTGAGGACATTCGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16030 GTGAGGAGTGACAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16031 GTGAGGAGTGTCATTG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16032 GTGAGGAGTTACGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16033 GTGAGGAGTTGGCCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16034 GTGAGGATCACTGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16035 GTGAGGATCAGTGGGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16036 GTGAGGATCCGAGATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16037 GTGAGGATCGGCGATC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16038 GTGAGTTAGAATCGCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16039 GTGAGTTAGCGCTTCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16040 GTGAGTTAGTTGCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16041 GTGAGTTCAACCAATC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16042 GTGAGTTCAATTCACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16043 GTGAGTTGTCGCTTAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16044 GTGAGTTGTTACGGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16045 GTGAGTTGTTGGCTAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16046 GTGATGTAGGACATCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16047 GTGATGTCACGACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16048 GTGATGTCAGCAGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16049 GTGATGTTCGTTGTGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16050 GTGCACGAGACCGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16051 GTGCACGAGGCAGTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16052 GTGCACGAGTCCGCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16053 GTGCACGCACGAAGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16054 GTGCACGTCGTTCATT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16055 GTGCAGCAGACTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16056 GTGCAGCAGCAGGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16057 GTGCAGCAGCGTGTTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16058 GTGCAGCCACCAGGTC SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16059 GTGCAGCGTCTGTAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16060 GTGCAGCTCAAGTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16061 GTGCAGCTCCATTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16062 GTGCAGCTCGAGCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16063 GTGCAGCTCTTCCCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16064 GTGCGTGAGAAGATCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16065 GTGCGTGAGAGAGGGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16066 GTGCGTGAGGAAGAAC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16067 GTGCGTGCAAACTAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16068 GTGCGTGTCAACCCGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16069 GTGCGTGTCCCATTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16070 GTGCGTGTCGAGAAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16071 GTGCTGGAGGGTTAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16072 GTGCTGGAGTCGAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16073 GTGCTGGCAACGGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16074 GTGCTGGCAGCGACAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16075 GTGCTGGGTGGCAACA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16076 GTGCTGGTCATGCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16077 GTGCTGGTCCATAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16078 GTGCTGGTCGATTCCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16079 GTGCTGGTCGCTAAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16080 GTGCTTCAGAGTCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Large vein endothelial cell nan nan nan CL:0002543 vein endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16081 GTGCTTCAGGTCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16082 GTGCTTCAGGTCGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16083 GTGCTTCCACGCCAGT SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16084 GTGCTTCCAGCACAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16085 GTGCTTCCAGTCGGAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16086 GTGCTTCCATTGCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16087 GTGCTTCGTCCCTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16088 GTGCTTCGTGGTCTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16089 GTGCTTCTCGGATAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16090 GTGGAAGAGCTTAGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16091 GTGGAAGAGGAAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Mitochondrial nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16092 GTGGAAGAGTACTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16093 GTGGAAGCACAGTCGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16094 GTGGAAGCATAGATGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16095 GTGGAAGGTTAAACCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16096 GTGGAAGTCCACGTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16097 GTGGAAGTCCGAGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16098 GTGGAAGTCCTTACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16099 GTGGAAGTCGTAGCCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16100 GTGGAAGTCTGGACCG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16101 GTGGAAGTCTTAGGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16102 GTGGAAGTCTTCCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16103 GTGGAGACACATACTG SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16104 GTGGAGACACGGTGAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16105 GTGGAGACAGCTGTTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16106 GTGGAGACAGTCGCAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16107 GTGGAGAGTACAGAGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16108 GTGGAGAGTCATAACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16109 GTGGAGATCAAACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16110 GTGGCGTAGACGAAGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16111 GTGGCGTAGCCTGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16112 GTGGCGTAGGCTAGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16113 GTGGCGTCAAAGCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16114 GTGGCGTCAAGTGCAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16115 GTGGCGTCACTGTTCC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16116 GTGGCGTCATGCGTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16117 GTGGCGTGTGTTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16118 GTGGCGTTCAAGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16119 GTGGCGTTCGGATAAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16120 GTGGGAAAGACTACGG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16121 GTGGGAAAGGTAGACC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16122 GTGGGAACAAGATGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16123 GTGGGAACAAGGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16124 GTGGGAACAGCCATTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16125 GTGGGAACAGGCATTT SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16126 GTGGGAACATAGGCGA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16127 GTGGGAAGTACGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16128 GTGGGAAGTGACACGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16129 GTGGGAAGTTGAGTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16130 GTGGGAATCCATTGTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16131 GTGGGAATCGGACAAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16132 GTGGGAATCGGCTCTT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16133 GTGGTTAAGCCTGAGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16134 GTGGTTAAGTAGACAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16135 GTGGTTAAGTGCAAAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16136 GTGGTTAAGTTAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16137 GTGGTTATCACGGTCG SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16138 GTGGTTATCACTGTCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16139 GTGGTTATCCTATTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16140 GTGGTTATCGAGAATA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16141 GTGGTTATCTCCCAAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16142 GTGTAACAGCTGTCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16143 GTGTAACAGGAGATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16144 GTGTAACCAACCGCTG SRX23721832 SRP491411 right temporal lobe - grey matter Angiogenic capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16145 GTGTAACCAAGGTACG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16146 GTGTAACCAGGCCCTA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16147 GTGTAACGTAGGTGCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16148 GTGTAACTCAAAGGAT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16149 GTGTAACTCCCGTAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16150 GTGTAACTCGGTCTAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16151 GTGTAACTCTAGTTCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16152 GTGTAACTCTCAACGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16153 GTGTAACTCTTCGACC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16154 GTGTCCTAGAGAGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16155 GTGTCCTAGAGGATCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16156 GTGTCCTCAAGTCCCG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16157 GTGTCCTCACACAGCC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16158 GTGTCCTCACAGGATG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16159 GTGTCCTGTAACGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16160 GTGTCCTGTCGACGCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16161 GTGTCCTGTTCATCTT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16162 GTGTCCTTCTTCACGC SRX23721832 SRP491411 right temporal lobe - grey matter Large artery endothelial cell nan nan nan CL:1000413 endothelial cell of artery missing child term TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16163 GTGTGATAGCTAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16164 GTGTGATAGTCAGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16165 GTGTGATAGTCTAACC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16166 GTGTGATCAAGCGAGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16167 GTGTGATCATGACTGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16168 GTGTGATGTAACAGGC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16169 GTGTGATGTCCTGTTC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16170 GTGTGATTCATTTGTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16171 GTGTGATTCCCGTTCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16172 GTGTGATTCGTGCGAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16173 GTGTGATTCTACCTTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16174 GTGTGGCAGTCATCCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16175 GTGTGGCAGTCTGCAT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16176 GTGTGGCAGTTGGCGA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16177 GTGTGGCCACTGGCGT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16178 GTGTGGCGTCAAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16179 GTGTGGCGTGCCCGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16180 GTGTGGCGTGTTACAC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16181 GTGTTAGAGAGAGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16182 GTGTTAGGTAGATCGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16183 GTGTTAGGTAGCTTGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16184 GTGTTAGGTATGCTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16185 GTGTTAGGTTCCCAAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16186 GTGTTAGTCTTTGCGC SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16187 GTGTTCCAGACCATAA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16188 GTGTTCCAGAGAGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16189 GTGTTCCAGCAAATCA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16190 GTGTTCCAGCTTCATG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16191 GTGTTCCAGTCACTAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16192 GTGTTCCCAACTGCTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16193 GTGTTCCCAGAGATTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16194 GTGTTCCGTACGTGAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16195 GTGTTCCGTCCCGCAA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16196 GTGTTCCGTTGTTGAC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16197 GTGTTCCTCGCATTGA SRX23721832 SRP491411 right temporal lobe - grey matter Venule endothelial cell nan nan nan CL:1000414 endothelial cell of venule perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16198 GTGTTCCTCGGAAGGT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16199 GTGTTCCTCGTGCAGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16200 GTTACAGAGAGATTCA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16201 GTTACAGAGCGTGCCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16202 GTTACAGAGGAACATT SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16203 GTTACAGAGTAGCTCT SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16204 GTTACAGAGTCGCGAA SRX23721832 SRP491411 right temporal lobe - grey matter EndoMT: endothelial-to-mesenchymal transitional cells nan nan nan CL:0000000 cell other TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16205 GTTACAGCAACAAGTA SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16206 GTTACAGCAAGAGTAT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16207 GTTACAGCAATAGTAG SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16208 GTTACAGCACATTCGA SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16209 GTTACAGCAGTTTGGT SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16210 GTTACAGCATAGACTC SRX23721832 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell nan nan nan CL:1000412 endothelial cell of arteriole perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16211 GTTACAGGTACTGAGG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16212 GTTACAGGTTAACCTG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16213 GTTACAGGTTCCTTGC SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
16214 GTTACAGTCCGTATAG SRX23721832 SRP491411 right temporal lobe - grey matter Capillary endothelial cell nan nan nan CL:0002144 capillary endothelial cell perfect match TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 nan
... ... ... ... ... ... ... ... ... ... ... ... ... ... ...

experiment annotations¶

In [ ]:
experiment = pd.read_csv(experiment_path_from_script, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
experiment.head()
Out[ ]:
#experimentId experimentName experimentDescription experimentSource experimentStatus RNAseqTags numberOfAnnotatedLibraries protocol protocolType GSE Bioproject PMID reference_url DOI xrefs comment
0 SRP491411 Single-cell atlas of the human brain vasculatu... A broad range of brain pathologies critically ... SRA 10X Genomics V2, 10X Genomics 3'end PRJNA1079775 38987604 10.1038/s41586-024-07493-y

experiment and protocol details¶

In [ ]:
library_to_add = pd.read_csv(library_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)

# this will give you the number of rows in the complete library file 
# this should be the number of annotated libraries
ann_lib = len(library_to_add.index)
len(library_to_add.index)
Out[ ]:
11
In [ ]:
# partial or total
experiment.loc[:,'experimentStatus'] = 'partial'
# scRNA-seq, Sn-scRNA-seq for both we put: 'Sn-scRNA-seq, scRNA-seq'
experiment.loc[:,'RNAseqTags'] = 'scRNA-seq' 


# see above cell, also can add as free text
experiment.loc[:,'numberOfAnnotatedLibraries'] = ann_lib

# these variables should already exist from above but if not can just add as free text
experiment.loc[:,'protocol'] = my_protocol
experiment.loc[:,'protocolType'] = my_protocolType

experiment.head()
Out[ ]:
#experimentId experimentName experimentDescription experimentSource experimentStatus RNAseqTags numberOfAnnotatedLibraries protocol protocolType GSE Bioproject PMID reference_url DOI xrefs comment
0 SRP491411 Single-cell atlas of the human brain vasculatu... A broad range of brain pathologies critically ... SRA partial scRNA-seq 11 10X Genomics V2 3'end PRJNA1079775 38987604 10.1038/s41586-024-07493-y

paper and xrefs¶

In [ ]:
experiment.loc[:,'GSE'] = 'GSE256491'
#experiment.loc[:,'Bioproject'] = '' 
#experiment.loc[:,'PMID'] = ''
experiment.loc[:,'reference_url'] = 'https://www.nature.com/articles/s41586-024-07493-y'
#experiment.loc[:,'DOI'] = ''
#experiment.loc[:,'xrefs'] = ''

experiment.head()
Out[ ]:
#experimentId experimentName experimentDescription experimentSource experimentStatus RNAseqTags numberOfAnnotatedLibraries protocol protocolType GSE Bioproject PMID reference_url DOI xrefs comment
0 SRP491411 Single-cell atlas of the human brain vasculatu... A broad range of brain pathologies critically ... SRA partial scRNA-seq 11 10X Genomics V2 3'end GSE256491 PRJNA1079775 38987604 https://www.nature.com/articles/s41586-024-074... 10.1038/s41586-024-07493-y

comments¶

In [ ]:
experiment.loc[:,'comment'] = 'GEO says 10X Genomics V2, supplemental methods says 10X Genomics V3. it is definitely 10X, i went with V2 but if there are issues when the pipeline is run try changing to V3. also, partially annotated because i only included healthy/control samples'


experiment.head()
Out[ ]:
#experimentId experimentName experimentDescription experimentSource experimentStatus RNAseqTags numberOfAnnotatedLibraries protocol protocolType GSE Bioproject PMID reference_url DOI xrefs comment
0 SRP491411 Single-cell atlas of the human brain vasculatu... A broad range of brain pathologies critically ... SRA partial scRNA-seq 11 10X Genomics V2 3'end GSE256491 PRJNA1079775 38987604 https://www.nature.com/articles/s41586-024-074... 10.1038/s41586-024-07493-y GEO says 10X Genomics V2, supplemental methods...

save complete file¶

In [ ]:
experiment.to_csv(experiment_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)

QA time¶

In [ ]:
library_to_add = pd.read_csv(library_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
experiment_to_add = pd.read_csv(experiment_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)

to add things here¶

check columns match¶

In [ ]:
# pull from git and pull in library/experiment file
! git pull
git_library = pd.read_csv(git_library_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
git_experiment = pd.read_csv(git_experiment_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)

# library file
if set(library_to_add.columns) == set(git_library.columns):
    print('The columns in the library file match')
else:
    print('The columns in the library file DO NOT MATCH')

# experiment file
if set(experiment_to_add.columns) == set(git_experiment.columns):
    print('The columns in the experiment file match')
else:
    print('The columns in the experiment file DO NOT MATCH')


# maybe to make this something more like "COLUMNS GOOD - LIBRARY" and "COLUMNS BAD - EXPERIMENT"
Already up to date.
The columns in the library file match
The columns in the experiment file match

view files¶

In [ ]:
library_git_plus_new = pd.concat([git_library, library_to_add], ignore_index = True, sort = False)
library_git_plus_new.tail(n=14)
Out[ ]:
#libraryId experimentId platform SRSId anatId anatName cellTypeId cellTypeName stageId stageName url_GSM infoOrgan infoCellType_abInitio infoCellType_inferred clusterId clusterName infoStage anatAnnotationStatus cellTypeAnnotationStatus stageAnnotationStatus sex strain genotype speciesId RNAseqTags protocol protocolType lib_name sampleName comment condition annotatorId lastModificationDate
58217 SRX13883034 SRP356459 Illumina NovaSeq 6000 SRS11751845 UBERON:0000955 brain HsapDv:0000026 Carnegie stage 19 brain - CNS Perivascular and other tissue derived cells 9 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end Fetal_CNS_20-10-2020_unsorted_3pr_v3 SAMN25224383 control/healthy samples only, removed all dise... SAC 2024-09-26
58218 SRX13883032 SRP356459 Illumina NovaSeq 6000 SRS11751842 UBERON:0000062 organ HsapDv:0000052 15th week post-fertilization stage peripheral organs - heart and lung Endothelial cells 16.4 gestational weeks other missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 16-4weeks_Fetal_HeartandLung_Sorted_3pr_v3 SAMN25224337 control/healthy samples only, removed all dise... SAC 2024-09-26
58219 SRX13883031 SRP356459 Illumina NovaSeq 6000 SRS11751843 UBERON:0002113 kidney HsapDv:0000050 13th week post-fertilization stage peripheral organs - kidney Endothelial cells 14.4 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 4weeks_Fetal_Muscle_Sorted_3pr_v3 SAMN25224336 control/healthy samples only, removed all dise... SAC 2024-09-26
58220 SRX23721836 SRP491411 Illumina NovaSeq 6000 SRS20549925 UBERON:0000955 brain HsapDv:0000048 11th week post-fertilization stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... brain - CNS Endothelial, perivascular and other tissue der... 12.4 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 12point4_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082466 SAC 2024-09-30
58221 SRX23721835 SRP491411 Illumina NovaSeq 6000 SRS20551511 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... right temporal lobe - white matter Endothelial, perivascular and other tissue der... 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_whitematter_unsorted_3pr_v3 SAMN40082472 SAC 2024-09-30
58222 SRX23721834 SRP491411 Illumina NovaSeq 6000 SRS20552142 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... right temporal lobe - grey matter Endothelial, perivascular and other tissue der... 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_greymatter_unsorted_3pr_v3 SAMN40082473 SAC 2024-09-30
58223 SRX23721833 SRP491411 Illumina NovaSeq 6000 SRS20552356 UBERON:0016534 white matter of temporal lobe HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... right temporal lobe - white matter Endothelial cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_whitematter_sorted_3pr_v3 SAMN40082474 SAC 2024-09-30
58224 SRX23721832 SRP491411 Illumina NovaSeq 6000 SRS20549927 UBERON:0016538 temporal cortex HsapDv:0000118 24-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... right temporal lobe - grey matter Endothelial cells 24 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_24-02-2020_greymatter_sorted_2ndbatch_3pr_v3 SAMN40082475 SAC 2024-09-30
58225 SRX23721831 SRP491411 Illumina NovaSeq 6000 SRS20551510 UBERON:0000955 brain HsapDv:0000026 Carnegie stage 19 https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... brain - CNS Endothelial, perivascular and other tissue der... 9.1 gestational weeks perfect match missing child term NA 9606 scRNA-seq 10X Genomics V2 3'end 9point1_Weeks_Fetal_CNS_UNSORTED_3pr_v3_1 SAMN40082467 SAC 2024-09-30
58226 SRX23721826 SRP491411 Illumina NovaSeq 6000 SRS20552352 UBERON:0002809 right temporal lobe HsapDv:0000133 39-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... right temporal lobe Endothelial cells 39 years perfect match perfect match F 9606 scRNA-seq 10X Genomics V2 3'end TL7 SAMN40082476 SAC 2024-09-30
58227 SRX23721825 SRP491411 Illumina NovaSeq 6000 SRS20551508 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... right temporal lobe - white matter Endothelial, perivascular and other tissue der... 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_whitematter_unsorted_3pr_v3 SAMN40082477 SAC 2024-09-30
58228 SRX23721824 SRP491411 Illumina NovaSeq 6000 SRS20552354 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... right temporal lobe - grey matter Endothelial, perivascular and other tissue der... 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_greymatter_unsorted_3pr_v3 SAMN40082478 SAC 2024-09-30
58229 SRX23721823 SRP491411 Illumina NovaSeq 6000 SRS20552353 UBERON:0016534 white matter of temporal lobe HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... right temporal lobe - white matter Endothelial cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_whitematter_sorted_3pr_v3 SAMN40082479 SAC 2024-09-30
58230 SRX23721822 SRP491411 Illumina NovaSeq 6000 SRS20552141 UBERON:0016538 temporal cortex HsapDv:0000119 25-year-old stage https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... right temporal lobe - grey matter Endothelial cells 25 years missing child term perfect match M 9606 scRNA-seq 10X Genomics V2 3'end TL_20-02-2020_greymatter_sorted_3pr_v3 SAMN40082480 SAC 2024-09-30
In [ ]:
experiment_git_plus_new = pd.concat([git_experiment, experiment_to_add], ignore_index = True, sort = False)
experiment_git_plus_new.tail(n=5)
Out[ ]:
#experimentId experimentName experimentDescription experimentSource experimentStatus RNAseqTags numberOfAnnotatedLibraries protocol protocolType GSE Bioproject PMID reference_url DOI xrefs comment
98 SRP462115 Unravelling cell type specific response to Par... Parkinson’s Disease (PD) is the second most co... SRA partial Sn-scRNA-seq 14 libraries, but barcode file contains info f... 10X Genomics V3 3'end GSE243639 PRJNA1019314 38245794 https://molecularneurodegeneration.biomedcentr... 10.1186/s13024-023-00699-0 barcode file is sheet ‘HighLevelCellTypes’ fro...
99 SRP192549 Single-cell transcriptomic profiling of the ag... The mammalian brain is complex, with multiple ... SRA total scRNA-seq 16 libraries 10X Genomics V2 3'end GSE129788 PRJNA532831 31551601 https://www.nature.com/articles/s41593-019-0491-3 10.1038/s41593-019-0491-3 https://singlecell.broadinstitute.org/single_c... annotation of cell types may be improved in th...
100 SRP125125 RNA-Seq profiling of 29 immune cell types and ... We performed RNA-Seq transcriptome profiling o... SRA total scRNA-seq 127 libraries Adapted Smart-Seq2 Full-length GSE107011 PRJNA418779 30726743 https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6... 10.1016/j.celrep.2019.01.041 30528453[PMID] NTR to check for annotation improvement, see h...
101 SRP356459 Molecular atlas of the human brain vasculature... Molecular atlas of the human brain vasculature... SRA partial scRNA-seq 27 10X Genomics V2 3'end GSE256490 PRJNA800024 38987604 https://www.nature.com/articles/s41586-024-074... 10.1038/s41586-024-07493-y GEO says 10X Genomics V2, supplemental methods...
102 SRP491411 Single-cell atlas of the human brain vasculatu... A broad range of brain pathologies critically ... SRA partial scRNA-seq 11 10X Genomics V2 3'end GSE256491 PRJNA1079775 38987604 https://www.nature.com/articles/s41586-024-074... 10.1038/s41586-024-07493-y GEO says 10X Genomics V2, supplemental methods...
In [ ]:
barcode_file_for_git = pd.read_csv(barcode_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
barcode_file_for_git.head(20)
Out[ ]:
barcode cluster library experiment tissue cell_type anatId_a_posteriori anatName_a_posteriori anat_a_posteriori_annotationStatus cellTypeId cellTypeName cellTypeAnnotationStatus name_Library comments
0 AAACCCAAGGACGGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3
1 AAACCCAGTCTGTCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
2 AAACCCAGTGATTAGA SRX23721822 SRP491411 right temporal lobe - grey matter Artery endothelial cell CL:1000413 endothelial cell of artery perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
3 AAACCCAGTTGTGGCC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3
4 AAACCCATCTGAACGT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
5 AAACGAAAGAGATTCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
6 AAACGAAAGTCACGAG SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3
7 AAACGAACAGCTCTGG SRX23721822 SRP491411 right temporal lobe - grey matter Capillary endothelial cell CL:0002144 capillary endothelial cell perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
8 AAACGAACAGGAAGTC SRX23721822 SRP491411 right temporal lobe - grey matter Large artery endothelial cell CL:1000413 endothelial cell of artery missing child term TL_20-02-2020_greymatter_sorted_3pr_v3
9 AAACGCTAGGCTCCCA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
10 AAACGCTAGTCATGAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
11 AAACGCTAGTCCGTCG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
12 AAACGCTGTCGAACAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
13 AAACGCTTCAAGGCTT SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
14 AAACGCTTCACTTCTA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
15 AAACGCTTCATACGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
16 AAACGCTTCGGAGCAA SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
17 AAACGCTTCTACTGCC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
18 AAACGCTTCTCTCGAC SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3
19 AAAGAACAGATGTTAG SRX23721822 SRP491411 right temporal lobe - grey matter Arteriole endothelial cell CL:1000412 endothelial cell of arteriole perfect match TL_20-02-2020_greymatter_sorted_3pr_v3

add annotations to git¶

In [ ]:
! git pull
Already up to date.
In [ ]:
library_git_plus_new.to_csv(git_library_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
update_format(git_library_path)
experiment_git_plus_new.to_csv(git_experiment_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
update_format(git_experiment_path)
barcode_file_for_git.to_csv(git_barcode_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
update_format(git_barcode_path)
In [ ]:
! git status
On branch develop
Your branch is up to date with 'origin/develop'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
	modified:   ../1_sara_scRNA_template.ipynb
	modified:   ../../../scRNA_Seq/scRNASeqExperiment.tsv
	modified:   ../../../scRNA_Seq/scRNASeqLibrary_merged.tsv

Untracked files:
  (use "git add <file>..." to include in what will be committed)
	../../bulk/1_anne_bulk_template.ipynb
	./
	../../../scRNA_Seq/scRNASeq_barcode_SRP491411.tsv

no changes added to commit (use "git add" and/or "git commit -a")
In [ ]:
! git add $git_experiment_path $git_library_path $git_barcode_path 
In [ ]:
! git status
On branch develop
Your branch is up to date with 'origin/develop'.

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
	modified:   ../../../scRNA_Seq/scRNASeqExperiment.tsv
	modified:   ../../../scRNA_Seq/scRNASeqLibrary_merged.tsv
	new file:   ../../../scRNA_Seq/scRNASeq_barcode_SRP491411.tsv

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
	modified:   ../1_sara_scRNA_template.ipynb

Untracked files:
  (use "git add <file>..." to include in what will be committed)
	../../bulk/1_anne_bulk_template.ipynb
	./

In [ ]:
! git commit -m $commit_message_exp
[develop 59534bd] adding annotated scRNA experiment SRP491411
 3 files changed, 61874 insertions(+)
 create mode 100644 scRNA_Seq/scRNASeq_barcode_SRP491411.tsv
In [ ]:
! git push
Enumerating objects: 10, done.
Counting objects: 100% (10/10), done.
Delta compression using up to 12 threads
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 396.90 KiB | 1.21 MiB/s, done.
Total 6 (delta 5), reused 0 (delta 0), pack-reused 0
remote: 
remote: To create a merge request for develop, visit:
remote:   https://gitlab.sib.swiss/Bgee/expression-annotations/-/merge_requests/new?merge_request%5Bsource_branch%5D=develop
remote: 
To https://gitlab.sib.swiss/Bgee/expression-annotations.git
   fb6c1fe..59534bd  develop -> develop

add annotation folder and script to git¶

first - run annotation summary cells, save ipynb, export to html

In [ ]:
! git status
In [ ]:
! git add $path_to_output
In [ ]:
! git commit -m $commit_message_py
In [ ]:
! git push